Files
ionic-framework/scss/ionic/structure/_menu.scss
2013-08-31 19:01:39 -05:00

29 lines
561 B
SCSS

//
// Side panel structure
// Author: Adam Bradley <adam@drifty.com>
.menu {
display: none;
min-height: 100%;
max-height: 100%;
width: $panelWidth;
position: absolute;
top: 0;
bottom: 0;
z-index: 0;
// has to be scroll, not auto
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
}
.menu-left { left: 0; }
.menu-right { right: 0; }
.menu-animated {
-webkit-transition: -webkit-transform $panelAnimationSpeed ease;
-moz-transition: -moz-transform $panelAnimationSpeed ease;
transition: transform $panelAnimationSpeed ease;
}