mirror of
https://github.com/jgthms/bulma
synced 2026-03-20 20:24:30 -07:00
Init CSS variables
This commit is contained in:
@@ -1,31 +1,31 @@
|
||||
@import "../utilities/mixins";
|
||||
|
||||
$body-background-color: $scheme-main !default;
|
||||
$body-background-color: getVar("scheme-main") !default;
|
||||
$body-size: 16px !default;
|
||||
$body-min-width: 300px !default;
|
||||
$body-rendering: optimizeLegibility !default;
|
||||
$body-family: $family-primary !default;
|
||||
$body-family: getVar("family-primary") !default;
|
||||
$body-overflow-x: hidden !default;
|
||||
$body-overflow-y: scroll !default;
|
||||
|
||||
$body-color: $text !default;
|
||||
$body-color: getVar("text") !default;
|
||||
$body-font-size: 1em !default;
|
||||
$body-weight: $weight-normal !default;
|
||||
$body-weight: getVar("weight-normal") !default;
|
||||
$body-line-height: 1.5 !default;
|
||||
|
||||
$code-family: $family-code !default;
|
||||
$code-family: getVar("family-code") !default;
|
||||
$code-padding: 0.25em 0.5em 0.25em !default;
|
||||
$code-weight: normal !default;
|
||||
$code-size: 0.875em !default;
|
||||
|
||||
$small-font-size: 0.875em !default;
|
||||
|
||||
$hr-background-color: $background !default;
|
||||
$hr-background-color: getVar("background") !default;
|
||||
$hr-height: 2px !default;
|
||||
$hr-margin: 1.5rem 0 !default;
|
||||
|
||||
$strong-color: $text-strong !default;
|
||||
$strong-weight: $weight-bold !default;
|
||||
$strong-color: getVar("text-strong") !default;
|
||||
$strong-weight: getVar("weight-bold") !default;
|
||||
|
||||
$pre-font-size: 0.875em !default;
|
||||
$pre-padding: 1.25rem 1.5rem !default;
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
@warn "The helpers.scss file is DEPRECATED. It has moved into its own /helpers folder. Please import sass/helpers/_all instead.";
|
||||
Reference in New Issue
Block a user