diff --git a/STARTERKIT/scss/config/_imports.scss b/STARTERKIT/scss/config/_imports.scss deleted file mode 100644 index d5ddf8a..0000000 --- a/STARTERKIT/scss/config/_imports.scss +++ /dev/null @@ -1,27 +0,0 @@ - -// -// @file -// Final imports. -// -// Each compiled SASS file imports this file using the @import "../config/imports" -// @-Rule which imports itself all required configuration partials. -// - -// The following comment starts with a "!". So it will not be removed during -// the (SASS) compilation. It is just to alert project contributors that the -// (CSS) output file can not be modified under any circumstances. -/*! Compiled SASS file | Do NOT modify from here !*/ - -// Variables overrides -// ============================================================================= -// Uncomment the ´@import` directive below to be able to override any of the -// Sass variables and maps coming from the `Framework SASS` source files. - -// @import 'variable-overrides'; - -// Sass Framework -// ============================================================================= -// Uncomment the ´@import` directive below to be able to include the full import -// stack of the `Framework SASS` source files. - -// @import '../../_sass-framework/include-all'; diff --git a/STARTERKIT/scss/config/_variable-overrides.scss b/STARTERKIT/scss/config/_variable-overrides.scss index 6c4385e..b7176ad 100644 --- a/STARTERKIT/scss/config/_variable-overrides.scss +++ b/STARTERKIT/scss/config/_variable-overrides.scss @@ -5,19 +5,40 @@ // // Every Sass variable and map in the `Framework SASS` source files includes // the '!default' flag allowing you to override the default value from here -// without modifying the `Framework SASS` source files code. Copy and paste -// variables or maps as needed, modify their values, and remove the -// '!default' flag. +// without modifying the `Framework SASS` source files code. // // If a variable has already been assigned, then it won’t be re-assigned by // the default values comig from the the `Framework SASS` source files. // // You will find the complete list of the `Framework SASS` variables and -// maps in the following files: -// ./THEMENAME/_sass-framework/variables/_options.scss -// ./THEMENAME/_sass-framework/variables/_colors.scss -// ./THEMENAME/_sass-framework/variables/_base.scss -// ./THEMENAME/_sass-framework/variables/_layout.scss -// ./THEMENAME/_sass-framework/variables/_components.scss -// ./THEMENAME/_sass-framework/variables/_selectors.scss +// maps at the following URL address: +// https://github.com/smillart/Framework-SASS-Source-Files/blob/2.0.x/SASS-REFERENCE.md#variables +// +// To load a module with configuration, write: +// +// @forward with ( +// : , +// : , +// ); +// +// Example: +// +// $new-blue: #1e90ff; +// $new-red: #b22222; +// $aqua: #00ffff; +// $fire: #ff0000; +// +// @forward '../../_sass-framework/utilities/color/colors' with ( +// $blue: $new-blue, +// $red: $new-red, +// ); +// +// @forward '../../_sass-framework/utilities/color/schemes' with ( +// $schemes: ( +// 'aqua': $aqua, +// 'fire': $fire, +// ), +// ); +// +// The configured values will override the variables’ default values. // diff --git a/scss/config/_imports.scss b/scss/config/_imports.scss deleted file mode 100644 index 3f55a1c..0000000 --- a/scss/config/_imports.scss +++ /dev/null @@ -1,18 +0,0 @@ - -// -// @file -// Final imports. -// -// Each compiled SASS file imports this file using the @import "../config/imports" -// @-Rule which imports itself all required configuration partials. -// - -// The following comment starts with a "!". So it will not be removed during -// the (SASS) compilation. It is just to alert project contributors that the -// (CSS) output file can not be modified under any circumstances. -/*! Compiled SASS file | Do NOT modify from here !*/ - -// Sass Framework -// ============================================================================= - -@import '../../_sass-framework/include-all';