33 lines
578 B
SCSS
33 lines
578 B
SCSS
|
|
.modal {
|
||
|
|
position: fixed;
|
||
|
|
left: 0;
|
||
|
|
top: 0;
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
background-color: rgba(37, 37, 37, .7);
|
||
|
|
z-index: 1;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
.modal-content {
|
||
|
|
color: black;
|
||
|
|
padding: 20px;
|
||
|
|
padding-bottom: 0px;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
align-items: flex-start;
|
||
|
|
height: auto;
|
||
|
|
background-color: #FFF;
|
||
|
|
min-width: 500px;
|
||
|
|
.actions {
|
||
|
|
border-top: 1px solid #bebebe;
|
||
|
|
width: 100%;
|
||
|
|
display: flex;
|
||
|
|
justify-content: flex-end;
|
||
|
|
min-width: 500px;
|
||
|
|
margin: 0 -20px;
|
||
|
|
padding: 10px;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|