mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 11:41:20 +08:00
28 lines
633 B
SCSS
28 lines
633 B
SCSS
|
|
// Material Design Tabs
|
|
// --------------------------------------------------
|
|
|
|
$tab-bar-md-item-padding: 2px 10px !default;
|
|
$tab-bar-md-item-font-size: 1.4rem !default;
|
|
$tab-bar-md-item-icon-size: 26px !default;
|
|
$tab-bar-md-item-height: 4.8rem !default;
|
|
|
|
|
|
.tabs[mode=md] {
|
|
|
|
button.tab-button {
|
|
padding: $tab-bar-md-item-padding;
|
|
min-height: $tab-bar-md-item-height;
|
|
font-size: $tab-bar-md-item-font-size;
|
|
|
|
box-shadow: none;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.tab-button-icon {
|
|
font-size: $tab-bar-md-item-icon-size;
|
|
min-width: $tab-bar-md-item-icon-size + 5;
|
|
}
|
|
|
|
}
|