Skip to content

Commit fc94a0a

Browse files
committed
fix(tab-bar): use PascalCase
1 parent 0f4d7aa commit fc94a0a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

core/src/components/tab-bar/tab-bar.ios.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77
:host {
88
// default color / background
9-
--background: var(--ion-components-ion-tabbar-bg);
9+
--background: var(--ion-components-ion-tab-bar-bg);
1010
--background-focused: #{$tabbar-ios-background-focused};
11-
--border: #{$hairlines-width solid (var(--ion-tab-bar-border-color, var(--ion-components-ion-tab-bar-border-color)))};
11+
--border: #{$hairlines-width solid var(--ion-tab-bar-border-color, var(--ion-components-ion-tab-bar-border-color))};
1212
--color: #{$tab-button-ios-text-color};
1313
--color-selected: #{$tabbar-ios-color-selected};
1414

core/src/themes/ios/default.tokens.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ export const defaultTheme: DefaultTheme = {
117117
IonSegmentButton: {
118118
checkedIndicatorBg: 'var(--ion-color-gray-350)', // Available only in iOS
119119
},
120-
IonTabbar: {
120+
IonTabBar: {
121121
bg: 'var(--ion-tab-bar-background-color, var(--ion-color-gray-50))',
122122
borderColor: 'var(--ion-border-color, var(--ion-color-gray-150))',
123123
},

core/src/themes/ios/light.tokens.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export const lightTheme: LightTheme = {
4646
IonSegmentButton: {
4747
checkedIndicatorBg: defaultColors.white, // Available only in iOS
4848
},
49-
IonTabbar: {
49+
IonTabBar: {
5050
bg: 'var(--ion-tab-bar-background-color, #f7f7f7)',
5151
borderColor: 'var(--ion-border-color, rgba(0, 0, 0, 0.2))',
5252
},

0 commit comments

Comments
 (0)