Files
ionic-framework/scss/_menu.scss
2013-11-27 08:27:26 -06:00

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);
}