mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 11:41:20 +08:00
37 lines
794 B
SCSS
37 lines
794 B
SCSS
|
|
// iOS Tab Bar
|
|
// --------------------------------------------------
|
|
|
|
$tab-bar-ios-item-padding: 3px 10px !default;
|
|
$tab-bar-ios-item-font-size: 1.1rem !default;
|
|
$tab-bar-ios-item-icon-size: 2.8rem !default;
|
|
|
|
|
|
.tabs-ios {
|
|
|
|
.tab-bar-item {
|
|
padding: $tab-bar-ios-item-padding;
|
|
}
|
|
|
|
.tab-bar-item-text {
|
|
font-size: $tab-bar-ios-item-font-size;
|
|
}
|
|
|
|
.tab-bar-item-icon {
|
|
font-size: $tab-bar-ios-item-icon-size;
|
|
}
|
|
|
|
&[tab-bar-placement="bottom"] > .tab-bar-container {
|
|
@include hairline(top, $navbar-ios-border-color);
|
|
}
|
|
|
|
&[tab-bar-placement="top"] > .tab-bar-container {
|
|
@include hairline(bottom, $navbar-ios-border-color);
|
|
}
|
|
|
|
&[tab-bar-placement="top"] > .navbar-container .navbar {
|
|
@include hairline(bottom, none);
|
|
}
|
|
|
|
}
|