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

26 lines
404 B
SCSS

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