Files
ionic-framework/scss/ionic/_modal.scss
Max Lynch e8f4eeeac8 Fixed #79
2013-11-06 16:38:12 -06:00

28 lines
352 B
SCSS

/**
* Modals are independent windows that slide in from off-screen.
*/
.modal {
position: fixed;
z-index: $zindex-modal;
top: 0;
opacity: 0;
-webkit-transform: translate3d(0,100%,0);
width: 100%;
min-height: 100%;
overflow: hidden;
background-color: $modal-bg-color;
// Active modal
&.active {
height: 100%;
}
}