Skip to content

Commit

Permalink
fix(bug): slider.scss uses deprecated / (#15063)
Browse files Browse the repository at this point in the history
* fix(bug): slider.scss uses deprecated `/`

an accidental deprecated division `/` snuck in and is causing sass loader errors downstream.

* Update packages/styles/scss/components/slider/_slider.scss

Co-authored-by: Taylor Jones <[email protected]>

* Update packages/styles/scss/components/slider/_slider.scss

---------

Co-authored-by: Taylor Jones <[email protected]>
  • Loading branch information
alewitt2 and tay1orjones authored Oct 31, 2023
1 parent 3434c93 commit 736de08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/styles/scss/components/slider/_slider.scss
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@
block-size: convert.to-rem(2px);
content: '';
inline-size: convert.to-rem(6px);
inset-block-start: calc(50% - #{convert.to-rem(2px) / 2});
inset-block-start: calc(50% - #{convert.to-rem(2px) * 0.5});
inset-inline-end: 0;
}

Expand Down

0 comments on commit 736de08

Please sign in to comment.