Use merge_map when defining colors to avoid override original Bulma colors
This commit is contained in:
parent
c53f19dc04
commit
4b80a2a203
@ -5,9 +5,12 @@ $primary-invert: findColorInvert($primary);
|
|||||||
$secondary: #FAB12D;
|
$secondary: #FAB12D;
|
||||||
$secondary-invert: findColorInvert($secondary);
|
$secondary-invert: findColorInvert($secondary);
|
||||||
|
|
||||||
$colors: (
|
$colors: map-merge(
|
||||||
|
$colors,
|
||||||
|
(
|
||||||
"primary": ($primary, $primary-invert),
|
"primary": ($primary, $primary-invert),
|
||||||
"secondary": ($secondary, $secondary-invert),
|
"secondary": ($secondary, $secondary-invert)
|
||||||
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
// Navbar
|
// Navbar
|
||||||
|
Loading…
Reference in New Issue
Block a user