You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As you can see @closeWidth: @width(300px) + @splitCloseDistance(1em); will be calculated as 301px; @veryCloseWidth: @width(300px) + @splitVeryCloseDistance(0.5em); will be calculated as 300.5px; @dividingWidth: @width(300px) + @splitDividingDistance(2.5rem); will be calculated as 302.5px;
The text was updated successfully, but these errors were encountered:
Looks like variables
@closeWidth
,@veryCloseWidth
,@dividingWidth
has bad unit calculations here:https://github.com/Semantic-Org/Semantic-UI/blob/master/src/themes/default/elements/rail.variables#L26
As you can see
@closeWidth: @width(300px) + @splitCloseDistance(1em);
will be calculated as301px
;@veryCloseWidth: @width(300px) + @splitVeryCloseDistance(0.5em);
will be calculated as300.5px
;@dividingWidth: @width(300px) + @splitDividingDistance(2.5rem);
will be calculated as302.5px
;The text was updated successfully, but these errors were encountered: