Refactor and remove unneeded comments

This commit is contained in:
George Lacey 2021-05-21 20:35:09 +01:00
parent 7daaa69a62
commit eabbf34fc3

View File

@ -1,13 +1,12 @@
// 1. Include functions first (so you can manipulate colors, SVGs, calc, etc)
@import "./scss/functions"; @import "./scss/functions";
// 2. Include any default variable overrides here // default variable overrides
$body-bg: #f0f8ff; $body-bg: #f0f8ff;
// 3. Include remainder of required Bootstrap stylesheets
@import "./scss/variables"; @import "./scss/variables";
@import "./scss/mixins"; @import "./scss/mixins";
// custom maps
$custom-colors: ( $custom-colors: (
"primary": #a0c4ff, "primary": #a0c4ff,
"info": #ffc6ff, "info": #ffc6ff,
@ -18,19 +17,9 @@ $custom-colors: (
"light": #f8f9fa, "light": #f8f9fa,
"dark": #212529 "dark": #212529
); );
// Merge the maps
$theme-colors: map-merge($theme-colors, $custom-colors); $theme-colors: map-merge($theme-colors, $custom-colors);
//$theme-colors: map-merge($theme-colors, $custom-colors);
// 4. Include any optional Bootstrap components as you like
//@import "./scss/root";
//@import "./scss/reboot";
//@import "./scss/type";
//@import "./scss/images";
//@import "./scss/containers";
//@import "./scss/grid";
//@import "./scss/nav";
//@import "./scss/navbar";
// 5. Add additional custom code here
@import "./scss/bootstrap"; @import "./scss/bootstrap";
// custom code