The quote below is from another post about editable css regions, is it still possible though when implementing SASS or LESS?
here is the other post -- https://www.couchcms.com/forum/viewtopic.php?f=2&t=7406
here is the other post -- https://www.couchcms.com/forum/viewtopic.php?f=2&t=7406
We can easily convert the .css file into a bonafide Couch managed template (and hence be able to define and use within it all the editable regions that you might require).
For example, if your site has a stylesheet named styles.css, rename it to styles.php, place the require_once and invoke statements to turn it into a regular Couch managed template.
Make sure to place the following statement just below the require_once
<cms:content_type 'text/css' />
You can now link all files to styles.php instead of styles.css. e.g.
<link rel="stylesheet" href="http://www.yoursite.com/css/styles.php" type="text/css" />
Hope this helps.