31 lines
No EOL
480 B
SCSS
31 lines
No EOL
480 B
SCSS
.ModalContainer {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
}
|
|
|
|
.Modal {
|
|
background: #f5f5f5;
|
|
border-radius: 8px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
min-width: 360px;
|
|
max-width: 480px;
|
|
overflow-y: auto;
|
|
position: relative;
|
|
z-index: 10;
|
|
}
|
|
|
|
.Modal .Button {
|
|
display: block;
|
|
min-height: 45px;
|
|
text-align: center;
|
|
} |