mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
37 lines
469 B
SCSS
37 lines
469 B
SCSS
|
|
/**
|
|
* Menus
|
|
* --------------------------------------------------
|
|
* Side panel structure
|
|
*/
|
|
|
|
.menu {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
z-index: 0;
|
|
overflow: hidden;
|
|
|
|
min-height: 100%;
|
|
max-height: 100%;
|
|
width: $menu-width;
|
|
|
|
background-color: #fff;
|
|
}
|
|
|
|
.menu-content {
|
|
box-shadow: $menu-side-shadow;
|
|
}
|
|
|
|
.menu-left {
|
|
left: 0;
|
|
}
|
|
|
|
.menu-right {
|
|
right: 0;
|
|
}
|
|
|
|
.menu-animated {
|
|
@include transition(transform $menu-animation-speed ease);
|
|
}
|