22 lines
998 B
SCSS
22 lines
998 B
SCSS
|
/* Bootstrap custom variable overrides */
|
||
|
|
||
|
// Typography
|
||
|
//
|
||
|
// Font, line-height, and color for body text, headings, and more.
|
||
|
|
||
|
// stylelint-disable value-keyword-case
|
||
|
$font-family-sans-serif: Lato, system-ui, -apple-system, "Segoe UI", Roboto,
|
||
|
"Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
|
||
|
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
|
||
|
$font-family-secondary: Righteous, system-ui, -apple-system, "Segoe UI", Roboto,
|
||
|
"Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
|
||
|
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
|
||
|
$font-family-monospace: "Fira Mono", SFMono-Regular, Menlo, Monaco, Consolas,
|
||
|
"Liberation Mono", "Courier New", monospace !important;
|
||
|
$font-family-code: "Fira Code", "Fira Mono", SFMono-Regular, Menlo, Monaco,
|
||
|
Consolas, "Liberation Mono", "Courier New", monospace !important;
|
||
|
|
||
|
// Features
|
||
|
$enable-shadows: true;
|
||
|
$enable-negative-margins: true;
|