this repo has no description
1#modal-container > div {
2 position: fixed;
3 top: 0;
4 right: 0;
5 height: 100%;
6 width: 100%;
7 z-index: 1000;
8 display: flex;
9 justify-content: center;
10 align-items: center;
11 background-color: var(--backdrop-color);
12 backdrop-filter: blur(24px);
13 animation: appear 0.5s var(--timing-function) both;
14}
15#modal-container > div .sheet {
16 transition: transform 0.3s var(--timing-function);
17 transform-origin: center bottom;
18}
19#modal-container > div:has(~ div) .sheet {
20 transform: scale(0.975);
21}
22
23#modal-container > .light {
24 backdrop-filter: saturate(0.75);
25}