Skip to content

Commit

Permalink
Fix #3842: restore use of $easing, $radius-rounded and $speed Sass va…
Browse files Browse the repository at this point in the history
…riables
  • Loading branch information
jgthms committed Sep 18, 2024
1 parent 9e64f50 commit 29aea4d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## 1.0.3

### Bug Fixes

- Fix #3842: restore use of `$easing`, `$radius-rounded` and `$speed` Sass variables

### Documentation Fixes

- Fix #3904, #3884: fix website horizontal overflow
Expand Down
6 changes: 3 additions & 3 deletions sass/themes/light.scss
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,13 @@ $scheme-main: hsl(iv.$scheme-h, iv.$scheme-s, $scheme-main-l);
// Other
"block-spacing": iv.$block-spacing,
"duration": 294ms,
"easing": ease-out,
"easing": iv.$easing,
"radius-small": iv.$radius-small,
"radius": iv.$radius,
"radius-medium": iv.$radius-medium,
"radius-large": iv.$radius-large,
"radius-rounded": 9999px,
"speed": 86ms,
"radius-rounded": iv.$radius-rounded,
"speed": iv.$speed,

"arrow-color": #{cv.getVar("link")},
"loading-color": #{cv.getVar("border")},
Expand Down

0 comments on commit 29aea4d

Please sign in to comment.