21 lines
381 B
CSS
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;
|
|
}
|