From 2f2c89ae799e4224d60faf69a82502ce45cbd67b Mon Sep 17 00:00:00 2001 From: Isabelle Date: Wed, 10 Dec 2025 10:31:24 +0100 Subject: [PATCH] fix(standard-styling): Fix structure of custom css --- falcon/_dev/css/custom.scss | 21 ------------------- falcon/_dev/css/theme.scss | 2 +- .../{ => theme}/custom/components/_forms.scss | 0 falcon/_dev/css/theme/custom/custom.scss | 21 +++++++++++++++++++ .../custom/layout/_left-column.scss | 0 5 files changed, 22 insertions(+), 22 deletions(-) delete mode 100644 falcon/_dev/css/custom.scss rename falcon/_dev/css/{ => theme}/custom/components/_forms.scss (100%) create mode 100644 falcon/_dev/css/theme/custom/custom.scss rename falcon/_dev/css/{ => theme}/custom/layout/_left-column.scss (100%) diff --git a/falcon/_dev/css/custom.scss b/falcon/_dev/css/custom.scss deleted file mode 100644 index 91e3f6c..0000000 --- a/falcon/_dev/css/custom.scss +++ /dev/null @@ -1,21 +0,0 @@ -// NOTE: All bootstrap overrides have been configured under the abstracts/variables/bootstrap folder. - -//Abstracts: Things used throughout the site such as utility classes and generic overrides. -//@import "custom/abstracts/base"; -//@import "custom/abstracts/utilities"; - -// Components: parts of the theme itself that are not associated with a module. -//@import "custom/components/"; -@import "custom/components/forms"; - -// Modules: Styling for specific modules. -//@import "custom/modules/"; - -//Layouts: Parts of a page, such as the header, footer, etc. -//@import "custom/layout/header"; -//@import "custom/layout/footer"; -@import "custom/layout/left-column"; - -// Pages -//@import "custom/pages/category"; -//@import "custom/pages/product"; diff --git a/falcon/_dev/css/theme.scss b/falcon/_dev/css/theme.scss index 6b8e1da..2bfcf11 100644 --- a/falcon/_dev/css/theme.scss +++ b/falcon/_dev/css/theme.scss @@ -1,3 +1,3 @@ @import "abstracts/index"; @import "theme/index"; -@import "custom"; +@import "theme/custom/custom"; diff --git a/falcon/_dev/css/custom/components/_forms.scss b/falcon/_dev/css/theme/custom/components/_forms.scss similarity index 100% rename from falcon/_dev/css/custom/components/_forms.scss rename to falcon/_dev/css/theme/custom/components/_forms.scss diff --git a/falcon/_dev/css/theme/custom/custom.scss b/falcon/_dev/css/theme/custom/custom.scss new file mode 100644 index 0000000..614a919 --- /dev/null +++ b/falcon/_dev/css/theme/custom/custom.scss @@ -0,0 +1,21 @@ +// 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/base"; +//@import "abstracts/utilities"; + +// Components: parts of the theme itself that are not associated with a module. +//@import "components/"; +@import "components/forms"; + +// Modules: Styling for specific modules. +//@import "modules/"; + +//Layouts: Parts of a page, such as the header, footer, etc. +//@import "layout/header"; +//@import "layout/footer"; +@import "layout/left-column"; + +// Pages +//@import "pages/category"; +//@import "pages/product"; diff --git a/falcon/_dev/css/custom/layout/_left-column.scss b/falcon/_dev/css/theme/custom/layout/_left-column.scss similarity index 100% rename from falcon/_dev/css/custom/layout/_left-column.scss rename to falcon/_dev/css/theme/custom/layout/_left-column.scss