Skip to content

Commit b998eac

Browse files
committed
style(theme): remove deprecated mixin and function from SCSS files
1 parent 81854f5 commit b998eac

File tree

2 files changed

+0
-28
lines changed

2 files changed

+0
-28
lines changed

assets/styles/abstracts/_theme.scss

-14
Original file line numberDiff line numberDiff line change
@@ -100,17 +100,3 @@ $themes: (
100100
'separator-line-color': #6b6b6b,
101101
),
102102
);
103-
104-
@mixin ktheme() {
105-
@each $theme, $map in $themes {
106-
$theme-map: $map !global;
107-
.#{$theme} & {
108-
@content;
109-
}
110-
}
111-
$theme-map: null !global;
112-
}
113-
114-
@function theme($key) {
115-
@return map-get($theme-map, $key);
116-
}

libs/ui/src/scss/_theme.scss

-14
Original file line numberDiff line numberDiff line change
@@ -102,17 +102,3 @@ $themes: (
102102
'toggle-active-switch': #363234,
103103
),
104104
);
105-
106-
@mixin ktheme() {
107-
@each $theme, $map in $themes {
108-
$theme-map: $map !global;
109-
.#{$theme} & {
110-
@content;
111-
}
112-
}
113-
$theme-map: null !global;
114-
}
115-
116-
@function theme($key) {
117-
@return map-get($theme-map, $key);
118-
}

0 commit comments

Comments
 (0)