Files
ionic-framework/scss/_modal.scss
2013-12-12 11:35:31 -06:00

26 lines
405 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: $z-index-modal;
overflow: hidden;
min-height: 100%;
width: 100%;
background-color: $modal-bg-color;
opacity: 0;
// Active modal
&.active {
height: 100%;
}
}