mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
31 lines
582 B
SCSS
31 lines
582 B
SCSS
|
|
// iOS Navbar
|
|
// --------------------------------------------------
|
|
|
|
$navbar-ios-height: 4.4rem !default;
|
|
$navbar-ios-border-color: #c4c4c4 !default;
|
|
|
|
|
|
.nav[mode="ios"] .navbar-container {
|
|
min-height: $navbar-ios-height;
|
|
|
|
// navbar on top, border on bottom (default)
|
|
@include hairline(bottom, $navbar-ios-border-color);
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
}
|