25 lines
353 B
SCSS
25 lines
353 B
SCSS
.simple-modal {
|
|
display: grid;
|
|
gap: 1.5rem;
|
|
justify-items: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.simple-modal__content {
|
|
margin: 0;
|
|
color: #666666;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
h2.simple-modal__content {
|
|
font-size: 15px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.simple-modal__actions {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 0.75rem;
|
|
flex-wrap: wrap;
|
|
}
|