mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 19:57:22 +08:00
36 lines
874 B
SCSS
36 lines
874 B
SCSS
$toolbar-material-height: 6.4rem !default;
|
|
$toolbar-material-background: #f7f7f8; //get-color(primary, base) !default;//#f7f7f8 !default;
|
|
|
|
$toolbar-material-title-font-size: 2rem !default;
|
|
$toolbar-material-button-font-size: 2rem !default;
|
|
$toolbar-material-button-text-color: #007aff !default;
|
|
|
|
.toolbar[mode="md"] {
|
|
padding: 0px 16px;
|
|
height: $toolbar-material-height;
|
|
background: $toolbar-material-background;
|
|
|
|
.toolbar-inner-title {
|
|
padding: 0;
|
|
}
|
|
|
|
ion-title {
|
|
font-size: $toolbar-material-title-font-size;
|
|
font-weight: 500;
|
|
}
|
|
|
|
button,
|
|
[button] {
|
|
font-size: $toolbar-material-button-font-size;
|
|
color: $toolbar-material-button-text-color;
|
|
border: none;
|
|
box-shadow: none;
|
|
|
|
padding: 0;
|
|
margin: 0 10px;
|
|
|
|
min-height: $toolbar-material-height;
|
|
min-width: 0;
|
|
}
|
|
}
|