mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 06:57:02 +08:00
25 lines
293 B
SCSS
25 lines
293 B
SCSS
/**
|
|
* Modals are independent windows that slide in from off-screen.
|
|
*/
|
|
|
|
.modal {
|
|
position: fixed;
|
|
|
|
z-index: $zindex-modal;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
min-height: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
background-color: $modal-bg-color;
|
|
|
|
// Active modal
|
|
&.active {
|
|
height: 100%;
|
|
}
|
|
}
|
|
|