ux: header, code + negative spacing
This commit is contained in:
parent
22afec709a
commit
37bcccfaa7
|
@ -24,6 +24,25 @@ $pink-500: #d32e9d;
|
||||||
|
|
||||||
$primary: $purple;
|
$primary: $purple;
|
||||||
|
|
||||||
|
// Options
|
||||||
|
//
|
||||||
|
// Quickly modify global styling by enabling or disabling optional features.
|
||||||
|
|
||||||
|
$enable-caret: true;
|
||||||
|
$enable-rounded: true;
|
||||||
|
$enable-shadows: false;
|
||||||
|
$enable-gradients: false;
|
||||||
|
$enable-transitions: true;
|
||||||
|
$enable-reduced-motion: true;
|
||||||
|
$enable-smooth-scroll: true;
|
||||||
|
$enable-grid-classes: true;
|
||||||
|
$enable-button-pointers: true;
|
||||||
|
$enable-rfs: true;
|
||||||
|
$enable-validation-icons: true;
|
||||||
|
$enable-negative-margins: true;
|
||||||
|
$enable-deprecation-messages: true;
|
||||||
|
$enable-important-utilities: true;
|
||||||
|
|
||||||
/** Bootstrap navbar fix (https://git.io/fADqW) */
|
/** Bootstrap navbar fix (https://git.io/fADqW) */
|
||||||
$navbar-dark-toggler-icon-bg: none;
|
$navbar-dark-toggler-icon-bg: none;
|
||||||
$navbar-light-toggler-icon-bg: none;
|
$navbar-light-toggler-icon-bg: none;
|
||||||
|
|
|
@ -10,7 +10,7 @@ samp {
|
||||||
pre {
|
pre {
|
||||||
background: $beige;
|
background: $beige;
|
||||||
color: $black;
|
color: $black;
|
||||||
line-height: $line-height-lg;
|
line-height: $line-height-base;
|
||||||
margin: 2rem 0;
|
margin: 2rem 0;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
padding: 1.25rem 1.5rem;
|
padding: 1.25rem 1.5rem;
|
||||||
|
|
|
@ -20,6 +20,10 @@
|
||||||
color: $body-color;
|
color: $body-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.navbar-light .navbar-nav .active .nav-link {
|
||||||
|
color: $primary;
|
||||||
|
}
|
||||||
|
|
||||||
@include media-breakpoint-up(md) {
|
@include media-breakpoint-up(md) {
|
||||||
.navbar-brand {
|
.navbar-brand {
|
||||||
font-size: $font-size-xl;
|
font-size: $font-size-xl;
|
||||||
|
|
Loading…
Reference in New Issue