Skip to content

Commit 1a9493b

Browse files
Fixing snapshot tests
1 parent f27239a commit 1a9493b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

core/src/components/range/range.ionic.scss

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
* overlapping the range. The buffer is added to the
6464
* bottom of the range label instead of the host.
6565
*/
66-
@include padding(calc(#{globals.$ion-space-200} + globals.dynamic-font(12px)), null, null, null);
66+
@include padding(calc(globals.$ion-space-200 + globals.dynamic-font(12px)), null, null, null);
6767
}
6868

6969
:host(.range-has-pin.range-label-placement-stacked) .label-text-wrapper {
@@ -72,7 +72,7 @@
7272
* margin to the bottom of the label, it provides a buffer
7373
* for the pin to move into when it is pressed.
7474
*/
75-
@include margin(null, null, calc(#{globals.$ion-space-200} + globals.dynamic-font(12px)), null);
75+
@include margin(null, null, calc(globals.$ion-space-200 + globals.dynamic-font(12px)), null);
7676
}
7777

7878
.range-bar-active {
@@ -84,16 +84,16 @@
8484

8585
&.has-ticks {
8686
@include border-radius(0);
87-
@include margin(null, calc(-1 * #{globals.$ion-scale-100} * 0.5), null, calc(-1 * #{globals.$ion-scale-100} * 0.5));
87+
@include margin(null, calc(-1 * globals.$ion-scale-100 * 0.5), null, calc(-1 * globals.$ion-scale-100 * 0.5));
8888
}
8989
}
9090

9191
.range-tick {
92-
@include margin-horizontal(calc(#{globals.$ion-scale-100} * -0.5), null);
92+
@include margin-horizontal(calc(globals.$ion-scale-100 * -0.5), null);
9393
@include border-radius(globals.$ion-border-radius-0);
9494

9595
position: absolute;
96-
top: calc((42px * 0.5) - (#{globals.$ion-scale-300} * 0.5));
96+
top: calc((42px * 0.5) - (globals.$ion-scale-300 * 0.5));
9797

9898
width: globals.$ion-scale-100;
9999
height: globals.$ion-scale-300;
@@ -124,7 +124,7 @@
124124
.range-knob {
125125
border-width: globals.$ion-border-size-025;
126126
border-style: solid;
127-
border-color: #{globals.ion-color(primary, base)};
127+
border-color: globals.ion-color(primary, base);
128128
}
129129

130130
/**

0 commit comments

Comments
 (0)