mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 04:14:21 +08:00
34 lines
769 B
SCSS
34 lines
769 B
SCSS
|
|
// Android Toolbar
|
|
// --------------------------------------------------
|
|
|
|
$toolbar-android-height: 6.4rem !default;
|
|
$toolbar-android-background: #f7f7f8 !default;
|
|
|
|
$toolbar-android-title-font-size: 2rem !default;
|
|
$toolbar-android-button-font-size: 2rem !default;
|
|
$toolbar-android-button-text-color: #007aff !default;
|
|
|
|
|
|
.toolbar-android {
|
|
height: $toolbar-android-height;
|
|
background: $toolbar-android-background;
|
|
|
|
.bar-title {
|
|
font-size: $toolbar-android-title-font-size;
|
|
}
|
|
|
|
.button {
|
|
font-size: $toolbar-android-button-font-size;
|
|
color: $toolbar-android-button-text-color;
|
|
border: none;
|
|
|
|
padding: 0;
|
|
margin: 0 10px;
|
|
|
|
min-height: $toolbar-android-height;
|
|
min-width: 0;
|
|
}
|
|
|
|
}
|