Files
ionic-framework/scss/_menu.scss
2013-11-07 13:34:52 -06:00

38 lines
654 B
SCSS

/**
* Menus
* --------------------------------------------------
* Side panel structure
*/
.menu {
position: absolute;
top: 0;
bottom: 0;
z-index: 0;
// has to be scroll, not auto
overflow-y: scroll;
min-height: 100%;
max-height: 100%;
width: $menu-width;
background-color: #fff;
-webkit-overflow-scrolling: touch;
}
.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;
}