mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
40 lines
651 B
SCSS
40 lines
651 B
SCSS
|
|
// Material Design Toolbar
|
|
// --------------------------------------------------
|
|
|
|
$toolbar-material-title-font-size: 2rem !default;
|
|
$toolbar-material-button-font-size: 24px !default;
|
|
|
|
|
|
.toolbar[mode="md"] {
|
|
|
|
.toolbar-inner {
|
|
padding: 0px 16px;
|
|
}
|
|
|
|
.toolbar-inner-title {
|
|
padding: 0;
|
|
}
|
|
|
|
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] {
|
|
padding: 0;
|
|
margin: 0 1rem;
|
|
|
|
min-width: 0;
|
|
|
|
box-shadow: none;
|
|
font-size: $toolbar-material-button-font-size;
|
|
}
|
|
|
|
}
|