chs/src-web/components/Popup.css
2022-11-02 14:25:59 +00:00

21 lines
381 B
CSS

.popup {
min-width: 512px;
max-width: 100vw;
/* min-height: 480px; */
background-color: #000000DD;
padding: 16px;
border-radius: 16px;
border: 2px solid var(--accent);
}
.popup-container {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
display: grid;
place-items: center;
background-color: #00000088;
}