Skip to content

Commit f27239a

Browse files
Fixing one css issue caused by previous CR
1 parent c2aede0 commit f27239a

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
@@ -12,7 +12,7 @@
1212
--knob-handle-size: #{globals.$ion-scale-1000};
1313
--bar-height: #{globals.$ion-scale-200};
1414
--bar-background: #{globals.$ion-primitives-neutral-100};
15-
--bar-background-active: #{ion-color(primary, base)};
15+
--bar-background-active: #{globals.ion-color(primary, base)};
1616
--bar-border-radius: #{globals.$ion-border-radius-400};
1717
--height: 42px;
1818

@@ -31,7 +31,7 @@
3131

3232
:host(.ion-color) .range-bar-active,
3333
:host(.ion-color) .range-tick-active {
34-
background: current-color(base);
34+
background: globals.current-color(base);
3535
}
3636

3737
::slotted(ion-icon[slot]) {
@@ -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} + 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} + 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 {
@@ -116,15 +116,15 @@
116116

117117
background: transparent;
118118

119-
font-size: dynamic-font(12px);
119+
font-size: globals.dynamic-font(12px);
120120

121121
text-align: center;
122122
}
123123

124124
.range-knob {
125125
border-width: globals.$ion-border-size-025;
126126
border-style: solid;
127-
border-color: #{ion-color(primary, base)};
127+
border-color: #{globals.ion-color(primary, base)};
128128
}
129129

130130
/**

0 commit comments

Comments
 (0)