mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 19:57:22 +08:00
30 lines
535 B
SCSS
30 lines
535 B
SCSS
|
|
// Material Design Toolbar
|
|
// --------------------------------------------------
|
|
|
|
$toolbar-material-title-font-size: 2rem !default;
|
|
$toolbar-material-button-font-size: 1.4rem !default;
|
|
|
|
|
|
.toolbar[mode="md"] {
|
|
|
|
.toolbar-inner-title {
|
|
padding: 0px 12px;
|
|
}
|
|
|
|
ion-title {
|
|
font-size: $toolbar-material-title-font-size;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.toolbar-primary-item ion-nav-items button:first-child {
|
|
margin-left: 0;
|
|
}
|
|
|
|
button,
|
|
[button] {
|
|
font-size: $toolbar-material-button-font-size;
|
|
}
|
|
|
|
}
|