Typically, I structure each view with an outer DIV that serves as the foundational background.
<div class="outer">
<!-- Content goes in here -->
</div>
Then, within my SASS file, I apply styles to it like this.
div.outer { ... }
This adds another layer of indentation and feels like a somewhat unnecessary complication. This leads me to question whether it's possible to directly style the template itself, especially for text-only elements without any tags at all.
Can the style of a template be set from SASS files when there are no accompanying tags, only plain text?