Organize SCSS: split implicit general styling and explicit. used classes

So differentiate between general stuff like variables, implicit general
document styling and classes, which need to be used explicitly.
This commit is contained in:
June 2024-01-29 03:59:55 +01:00
parent 1d77be4e7c
commit 9429366f49
Signed by: june
SSH key fingerprint: SHA256:o9EAq4Y9N9K0pBQeBTqhSDrND5E7oB+60ZNx0U1yPe0
3 changed files with 7 additions and 2 deletions
themes/ccchh/assets/scss

View file

@ -1,3 +1,8 @@
// General variables.
@import "variables.scss";
@import "container.scss";
@import "document-typography.scss";
// General implicit document styling.
@import "document/typography.scss";
// Classes to be used explicitly.
@import "classes/container.scss";