19 lines
281 B
CSS
19 lines
281 B
CSS
|
.terms-modal-enter {
|
||
|
margin: 10px;
|
||
|
}
|
||
|
#terms-modal {
|
||
|
margin: auto;
|
||
|
margin-top: 20vh;
|
||
|
padding: 5px 20px;
|
||
|
text-align: center;
|
||
|
width: fit-content;
|
||
|
}
|
||
|
#terms-modal-bg {
|
||
|
position: fixed;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
z-index: 999;
|
||
|
backdrop-filter: blur(10px);
|
||
|
}
|