mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 23:16:52 +08:00
36 lines
583 B
SCSS
36 lines
583 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 {
|
|
-webkit-transition: -webkit-transform $menu-animation-speed ease;
|
|
-moz-transition: -moz-transform $menu-animation-speed ease;
|
|
transition: transform $menu-animation-speed ease;
|
|
}
|
|
|