mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
25 lines
444 B
SCSS
25 lines
444 B
SCSS
|
|
// Material Design Tabs
|
|
// --------------------------------------------------
|
|
|
|
$tab-bar-md-item-padding: 0 10px !default;
|
|
$tab-bar-md-item-font-size: 1.4rem !default;
|
|
|
|
|
|
.tabs[mode="md"] {
|
|
|
|
button.tab-button {
|
|
padding: $tab-bar-md-item-padding;
|
|
font-size: $tab-bar-md-item-font-size;
|
|
|
|
box-shadow: none;
|
|
border-radius: 0;
|
|
white-space: normal;
|
|
}
|
|
|
|
.tab-button-text {
|
|
white-space: normal;
|
|
}
|
|
|
|
}
|