From 48e776d80d445f677c78f28b2de87a2de412c585 Mon Sep 17 00:00:00 2001 From: Isabelle Date: Wed, 31 Dec 2025 16:19:02 +0100 Subject: [PATCH] feat(falcon-PS9): Add custom.scss file to follow 7-in-1 structure --- falcon/_dev/css/theme/_index.scss | 1 + falcon/_dev/css/theme/custom/_custom.scss | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 falcon/_dev/css/theme/custom/_custom.scss diff --git a/falcon/_dev/css/theme/_index.scss b/falcon/_dev/css/theme/_index.scss index 2efc03b..d3714c7 100644 --- a/falcon/_dev/css/theme/_index.scss +++ b/falcon/_dev/css/theme/_index.scss @@ -5,3 +5,4 @@ @import "layout/index"; @import "components/index"; +@import "custom/custom"; diff --git a/falcon/_dev/css/theme/custom/_custom.scss b/falcon/_dev/css/theme/custom/_custom.scss new file mode 100644 index 0000000..806fc61 --- /dev/null +++ b/falcon/_dev/css/theme/custom/_custom.scss @@ -0,0 +1,22 @@ +/* This is the main custom SCSS file for the Falcon theme. + +I am loosely following the 7 in 1 structure for better organization of the styles. Learn more here: +https://medium.com/@diyorbekjuraev77/be-a-master-at-creating-the-7-1-sass-pattern-776fdfb5a3b1 + +⚠️NOTE: All bootstrap overrides have been configured under themes/falcon/_dev/css/abstracts/variables/bootstrap */ + +//Abstracts: Things used throughout the site such as utility classes and generic overrides. +//@import "abstracts/mixins"; + +// Components: parts of the theme itself that are not associated with a module. +//@import "components/buttons"; + +// Modules: Styling for specific modules. +//@import "modules/"; + +//Layouts: Parts of a page, such as the header, footer, etc. +//@import "layout/footer"; +//@import "layout/header"; + +// Pages +//@import "pages/home";