Skip to content

Commit

Permalink
Fix #3824
Browse files Browse the repository at this point in the history
  • Loading branch information
jgthms committed Jun 23, 2024
1 parent d48e275 commit 1ad4cb2
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 11 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Bulma Changelog

## 1.0.2

### Bug fixes

- Fix #3824: ability to override `$scheme-h`, `$scheme-s`, `$dark-l` and `$light-l` Sass variables

## 1.0.1

### Bug fixes
Expand Down
30 changes: 23 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions sass/utilities/initial-variables.scss
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// Scheme Hue and Saturation

$scheme-h: 221;
$scheme-s: 14%;
$dark-l: 20%;
$light-l: 90%;
$scheme-h: 221 !default;
$scheme-s: 14% !default;
$dark-l: 20% !default;
$light-l: 90% !default;

// Colors

Expand Down

0 comments on commit 1ad4cb2

Please sign in to comment.