45 lines
No EOL
726 B
CSS
45 lines
No EOL
726 B
CSS
.dialog {
|
|
margin: auto;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
.dialog::backdrop {
|
|
opacity: 50%;
|
|
background-color: black;
|
|
}
|
|
|
|
.select {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
background-color: var(--background-color);
|
|
border-radius: 1rem;
|
|
margin: auto;
|
|
padding: 1rem;
|
|
width: max-content;
|
|
max-width: 45rem;
|
|
color: var(--font-color);
|
|
text-align: center;
|
|
text-wrap: wrap;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.select:not(.waiting) {
|
|
min-width: 12rem;
|
|
}
|
|
|
|
.buttons {
|
|
display: flex;
|
|
}
|
|
|
|
.submit-btn {
|
|
background: var(--accent-color);
|
|
color: var(--font-color);
|
|
}
|
|
|
|
@media (max-width: 1000px) {
|
|
.select {
|
|
max-width: 100%;
|
|
}
|
|
} |