phanpy/src/components/modal.css

18 lines
323 B
CSS
Raw Normal View History

2022-12-10 12:14:48 +03: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);
}
#modal-container > .light {
2022-12-25 18:33:59 +03:00
backdrop-filter: saturate(0.75);
}