Files
ionic-framework/scss/_menu.scss
2013-12-12 11:35:31 -06:00

39 lines
613 B
SCSS

/**
* Menus
* --------------------------------------------------
* Side panel structure
*/
.menu {
position: absolute;
top: 0;
bottom: 0;
z-index: $z-index-menu;
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;
}