You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.0 KiB
61 lines
1.0 KiB
6 years ago
|
@import './modal-content/index';
|
||
|
|
||
|
.modal-container {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
background-color: #fff;
|
||
|
display: flex;
|
||
|
flex-flow: column;
|
||
|
border-radius: 8px;
|
||
|
|
||
|
&__content {
|
||
|
overflow-y: auto;
|
||
|
flex: 1;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
padding: 16px 32px;
|
||
|
|
||
|
@media screen and (max-width: 575px) {
|
||
|
justify-content: center;
|
||
|
padding: 28px 20px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&__header {
|
||
|
position: relative;
|
||
|
display: flex;
|
||
|
padding: 12px;
|
||
|
justify-content: center;
|
||
|
border-bottom: 1px solid #d2d8dd;
|
||
|
}
|
||
|
|
||
|
&__header-close::after {
|
||
|
content: '\00D7';
|
||
|
font-size: 40px;
|
||
|
color: $dusty-gray;
|
||
|
position: absolute;
|
||
|
top: -5px;
|
||
|
right: 10px;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
&__footer {
|
||
|
display: flex;
|
||
|
flex-flow: row;
|
||
|
justify-content: center;
|
||
|
border-top: 1px solid #d2d8dd;
|
||
|
padding: 16px;
|
||
|
flex: 0 0 auto;
|
||
|
|
||
|
&-button {
|
||
|
min-width: 0;
|
||
|
margin-right: 16px;
|
||
|
|
||
|
&:last-of-type {
|
||
|
margin-right: 0;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|