34 lines
569 B
SCSS
34 lines
569 B
SCSS
|
.modal-page-overlay {
|
||
|
position: fixed;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
|
||
|
top: 0px;
|
||
|
left: 0px;
|
||
|
right: 0px;
|
||
|
bottom: 0px;
|
||
|
background-color: rgba(255, 255, 255, 0.74902);
|
||
|
z-index: 9999;
|
||
|
}
|
||
|
|
||
|
.modal-page {
|
||
|
position: fixed;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
|
||
|
border: 1px solid rgb(204, 204, 204);
|
||
|
background: rgb(255, 255, 255);
|
||
|
overflow: auto;
|
||
|
border-radius: 4px;
|
||
|
outline: none;
|
||
|
padding: 36px;
|
||
|
|
||
|
top: 25px;
|
||
|
left: 25px;
|
||
|
right: 25px;
|
||
|
bottom: 25px;
|
||
|
}
|