Fix initial variable overrides for Bootstrap

This commit is contained in:
Andreas Nedbal 2023-01-03 21:55:47 +01:00 committed by Andreas Nedbal
parent c463055cc8
commit eaaed57759
1 changed files with 9 additions and 1 deletions

View File

@ -25,6 +25,12 @@ $navbar-height: 56px;
// Color overrides for Bootstrap // Color overrides for Bootstrap
$primary: #5e35b1; $primary: #5e35b1;
$rs-theme-colors: (
primary: $primary
);
$theme-colors: map-merge($theme-colors, $rs-theme-colors);
// Cards // Cards
$card-border-width: 0; $card-border-width: 0;
@ -57,10 +63,12 @@ $avatar-sizes: (
"xxl": 160px, "xxl": 160px,
); );
$spacers: ( $rs-spacers: (
10: (1rem * 6) 10: (1rem * 6)
); );
$spacers: map-merge($rs-spacers, $spacers);
:root { :root {
--background: #f0edf4; --background: #f0edf4;
--input-bg: var(--background); --input-bg: var(--background);