mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-01-27 19:16:32 +01:00
17 lines
321 B
CSS
17 lines
321 B
CSS
|
#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);
|
||
|
}
|
||
|
|
||
|
#modal-container > .light {
|
||
|
backdrop-filter: saturate(.75);
|
||
|
}
|