mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 11:41:20 +08:00
29 lines
431 B
SCSS
29 lines
431 B
SCSS
@import "../../ionic.globals";
|
|
|
|
// Navbar
|
|
// --------------------------------------------------
|
|
|
|
|
|
ion-navbar.toolbar {
|
|
display: flex;
|
|
transform: translate3d(-9999px, -9999px, 0);
|
|
}
|
|
|
|
ion-navbar.toolbar.show-navbar {
|
|
transform: none;
|
|
}
|
|
|
|
.back-button {
|
|
order: map-get($toolbar-order, backButton);
|
|
|
|
display: none;
|
|
&.show-back-button {
|
|
display: flex;
|
|
}
|
|
}
|
|
|
|
.back-button-text {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|