refactor: update deprecated syntax for SASS division

This commit is contained in:
Cotes Chung 2022-12-27 21:50:21 +08:00
parent 09e4ad245b
commit d7bcb40cde
No known key found for this signature in database
GPG Key ID: 0D9E54843167A808
1 changed files with 2 additions and 2 deletions

View File

@ -816,7 +816,7 @@ $sidebar-display: "sidebar-display";
&:last-child {
a {
position: relative;
left: $cursor-width / 2;
left: calc($cursor-width / 2);
width: 100%;
}
@ -842,7 +842,7 @@ $sidebar-display: "sidebar-display";
@for $i from 1 through $tab-count {
$offset: $tab-count - $i;
$top: -$offset * $tab-height + ($tab-height - $tab-cursor-height) / 2;
$top: -$offset * $tab-height + calc(($tab-height - $tab-cursor-height) / 2);
@if $i < $tab-count {
> li.active:nth-child(#{$i}),