This repository was archived by the owner on Jan 13, 2025. It is now read-only.
File tree 2 files changed +17
-13
lines changed
2 files changed +17
-13
lines changed Original file line number Diff line number Diff line change @@ -141,12 +141,12 @@ $secondary-navigation-tab-light-theme: (
141
141
@include tab-theme .primary-navigation-tab-theme-styles (
142
142
map-ext .pick ($theme , map .keys (tab-theme .$primary-light-theme )... )
143
143
);
144
- }
145
144
146
- .mdc-tab-indicator {
147
- @include tab-indicator-theme .theme-styles (
148
- map-ext .pick ($theme , map .keys (tab-indicator-theme .$light-theme )... )
149
- );
145
+ .mdc-tab-indicator {
146
+ @include tab-indicator-theme .theme-styles (
147
+ map-ext .pick ($theme , map .keys (tab-indicator-theme .$light-theme )... )
148
+ );
149
+ }
150
150
}
151
151
}
152
152
@@ -155,11 +155,11 @@ $secondary-navigation-tab-light-theme: (
155
155
@include tab-theme .secondary-navigation-tab-theme-styles (
156
156
map-ext .pick ($theme , map .keys (tab-theme .$secondary-light-theme )... )
157
157
);
158
- }
159
158
160
- .mdc-tab-indicator {
161
- @include tab-indicator-theme .theme-styles (
162
- map-ext .pick ($theme , map .keys (tab-indicator-theme .$light-theme )... )
163
- );
159
+ .mdc-tab-indicator {
160
+ @include tab-indicator-theme .theme-styles (
161
+ map-ext .pick ($theme , map .keys (tab-indicator-theme .$light-theme )... )
162
+ );
163
+ }
164
164
}
165
165
}
Original file line number Diff line number Diff line change @@ -256,6 +256,8 @@ $custom-property-prefix: 'tab';
256
256
@include _divider-color (map .get ($theme , divider-color ));
257
257
@include _divider-height (map .get ($theme , divider-height ));
258
258
259
+ @include _icon-size (map .get ($theme , with-icon-icon-size ));
260
+
259
261
@include _active-icon-color (
260
262
(
261
263
default : map .get ($theme , with-icon-active-icon-color ),
@@ -543,9 +545,11 @@ $custom-property-prefix: 'tab';
543
545
}
544
546
545
547
@mixin _icon-size ($size ) {
546
- @include theme .property (' width' , $size );
547
- @include theme .property (' height' , $size );
548
- @include theme .property (' font-size' , $size );
548
+ .mdc-tab__icon {
549
+ @include theme .property (' width' , $size );
550
+ @include theme .property (' height' , $size );
551
+ @include theme .property (' font-size' , $size );
552
+ }
549
553
}
550
554
551
555
@mixin _label-text-font-family ($font-family ) {
You can’t perform that action at this time.
0 commit comments