39 lines
534 B
CSS
39 lines
534 B
CSS
|
|
@layer base {
|
||
|
|
.overlay {
|
||
|
|
position: fixed;
|
||
|
|
inset: 0;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
z-index: 100;
|
||
|
|
}
|
||
|
|
|
||
|
|
.modal {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
gap: 6px;
|
||
|
|
width: 100%;
|
||
|
|
max-width: 320px;
|
||
|
|
padding: 13px;
|
||
|
|
|
||
|
|
.content {
|
||
|
|
border-radius: 22px;
|
||
|
|
|
||
|
|
.description {
|
||
|
|
padding: 12px;
|
||
|
|
border-radius: 18px;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.buttons {
|
||
|
|
display: flex;
|
||
|
|
gap: 6px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.button {
|
||
|
|
flex: 1;
|
||
|
|
}
|
||
|
|
}
|