Skip to content

Commit

Permalink
[web] Remove sass processor warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
hacketiwack committed Aug 22, 2024
1 parent ee6f81a commit 12eaa85
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions web-src/src/mystyles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -419,18 +419,22 @@ input[type='range'].slider {
@include mobile {
--th: calc(var(--sh) * 5);
}
--sx: calc(var(--th) / 2 + (var(--ratio) * (100% - var(--th))));
-webkit-appearance: none;
min-width: 250px;
height: calc(var(--sh) * 5);
width: 100% !important;
cursor: grab;
& {
--sx: calc(var(--th) / 2 + (var(--ratio) * (100% - var(--th))));
-webkit-appearance: none;
min-width: 250px;
height: calc(var(--sh) * 5);
width: 100% !important;
cursor: grab;
}
&:active {
cursor: grabbing;
}
&::-webkit-slider-thumb {
@include thumb;
margin-top: calc((var(--th) - var(--sh)) / -2);
& {
margin-top: calc((var(--th) - var(--sh)) / -2);
}
}
&::-moz-range-thumb {
@include thumb;
Expand Down

0 comments on commit 12eaa85

Please sign in to comment.