mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 19:57:22 +08:00
36 lines
521 B
SCSS
36 lines
521 B
SCSS
|
|
// Navbar
|
|
// --------------------------------------------------
|
|
|
|
|
|
.navbar.toolbar {
|
|
position: absolute;
|
|
}
|
|
|
|
.navbar {
|
|
transform: translate3d(100%, 0px, 0px);
|
|
|
|
&.show-navbar {
|
|
transform: translate3d(0px, 0px, 0px);
|
|
}
|
|
}
|
|
|
|
.back-button {
|
|
order: map-get($toolbar-order, backButton);;
|
|
transform: translateZ(0px);
|
|
|
|
display: none;
|
|
&.show-back-button {
|
|
display: flex;
|
|
}
|
|
}
|
|
|
|
.back-button-text {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.transparent-navbar {
|
|
background-color: transparent !important;
|
|
}
|