Skip to content

Commit 6ce549d

Browse files
committed
refactor(radio-group): fix imports
1 parent a0b01de commit 6ce549d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

core/src/components/radio-group/radio-group.common.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
@import "../../themes/native/native.globals";
21

32
// Radio Group: Common
43
// --------------------------------------------------

core/src/components/radio-group/radio-group.ionic.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@
2525
// list to align them with the list header and item text.
2626
ion-list .radio-group-top {
2727
/* stylelint-disable */
28-
@include ltr() {
28+
@include globals.ltr() {
2929
padding-right: globals.$ion-space-400;
3030
padding-left: calc(globals.$ion-space-400 + var(--ion-safe-area-left, 0px));
3131
}
3232

33-
@include rtl() {
33+
@include globals.rtl() {
3434
padding-right: calc(globals.$ion-space-400 + var(--ion-safe-area-right, 0px));
3535
padding-left: globals.$ion-space-400;
3636
}

core/src/components/radio-group/radio-group.native.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
@import "./radio-group.common";
2+
@import "../../themes/native/native.globals";
23

34
// Radio Group: Native
45
// --------------------------------------------------

0 commit comments

Comments
 (0)