2022-12-10 17:14:48 +08:00
|
|
|
#modal-container > div {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
z-index: 1000;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
background-color: var(--backdrop-color);
|
|
|
|
backdrop-filter: blur(24px);
|
2022-12-27 01:44:41 +08:00
|
|
|
animation: appear 0.5s var(--timing-function) both;
|
2022-12-10 17:14:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#modal-container > .light {
|
2022-12-25 23:33:59 +08:00
|
|
|
backdrop-filter: saturate(0.75);
|
|
|
|
}
|