mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-04-14 19:47:03 +00:00
17 lines
No EOL
528 B
SCSS
17 lines
No EOL
528 B
SCSS
// Custom variables for Bootstrap 4
|
|
|
|
|
|
// See here https://github.com/twbs/bootstrap/issues/22458
|
|
// why it's not enough to just override $grid-gutter-width-base.
|
|
//
|
|
// Basically you have to copy here every variable from _variables.scss
|
|
// that uses a custom variable.
|
|
$grid-gutter-width-base: 24px;
|
|
$grid-gutter-widths: (
|
|
xs: $grid-gutter-width-base,
|
|
sm: $grid-gutter-width-base,
|
|
md: $grid-gutter-width-base,
|
|
lg: $grid-gutter-width-base,
|
|
xl: $grid-gutter-width-base
|
|
);
|
|
$card-deck-margin: ($grid-gutter-width-base / 2); |