mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 11:41:20 +08:00
27 lines
418 B
SCSS
27 lines
418 B
SCSS
|
|
// iOS Navbar
|
|
// --------------------------------------------------
|
|
|
|
$navbar-ios-height: 4.4rem !default;
|
|
|
|
|
|
.nav[mode="ios"] .navbar-container {
|
|
min-height: $navbar-ios-height;
|
|
}
|
|
|
|
.navbar[mode="ios"] {
|
|
|
|
.back-button {
|
|
padding: 0;
|
|
margin: 0 4px;
|
|
|
|
order: map-get($toolbar-order-ios, 'back-button');
|
|
overflow: inherit;
|
|
}
|
|
|
|
.back-button-icon {
|
|
padding-right: 8px;
|
|
}
|
|
|
|
}
|