- Bring back Bootstrap's bg-body default.
- Apply off white to <body>. - Shade a nice color to dropdown hovered items.
This commit is contained in:
@@ -53,7 +53,7 @@ $danger-lightest: hsl(350, 100%, 96%);
|
|||||||
$enable-shadows: true !default;
|
$enable-shadows: true !default;
|
||||||
|
|
||||||
// Body
|
// Body
|
||||||
$body-bg: hsl(260, 27%, 94%) !default;
|
$body-background-color: hsl(260, 27%, 94%); // Bootstrap doesn't have this variable
|
||||||
|
|
||||||
// Links
|
// Links
|
||||||
$link-decoration: none !default;
|
$link-decoration: none !default;
|
||||||
@@ -97,6 +97,9 @@ $nav-link-transition: none;
|
|||||||
$navbar-dark-color: rgba($white, .8) !default;
|
$navbar-dark-color: rgba($white, .8) !default;
|
||||||
$navbar-dark-hover-color: $white !default;
|
$navbar-dark-hover-color: $white !default;
|
||||||
|
|
||||||
|
// Dropdown
|
||||||
|
$dropdown-link-hover-bg: hsl(200 35% 95% / 1);
|
||||||
|
|
||||||
// Breadcrumb
|
// Breadcrumb
|
||||||
$breadcrumb-divider: quote(">");
|
$breadcrumb-divider: quote(">");
|
||||||
|
|
||||||
|
|||||||
3
scss/bootstrap/_reboots.scss
Normal file
3
scss/bootstrap/_reboots.scss
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
body {
|
||||||
|
background-color: $body-background-color; // Off white
|
||||||
|
}
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
// Bootstrap components
|
// Bootstrap components
|
||||||
|
@import 'bootstrap/reboots';
|
||||||
@import 'bootstrap/buttons';
|
@import 'bootstrap/buttons';
|
||||||
@import 'bootstrap/nav';
|
@import 'bootstrap/nav';
|
||||||
@import 'bootstrap/navbar';
|
@import 'bootstrap/navbar';
|
||||||
|
|||||||
Reference in New Issue
Block a user