23 lines
344 B
CSS
Raw Normal View History

2024-10-08 13:03:01 +02:00
.backdrop {
opacity: 0;
transition: opacity 0.25s;
2024-08-20 15:57:58 +02:00
height: 100%;
width: 100%;
position: fixed;
top: 0;
left: 0;
background: var(--codex-background-backdrop);
backdrop-filter: blur(2px);
display: block;
2024-10-08 13:03:01 +02:00
z-index: -1;
2024-10-30 19:20:43 +01:00
&[aria-expanded] {
z-index: 10;
opacity: 1;
}
2024-08-20 15:57:58 +02:00
}
2024-08-22 17:07:05 +02:00
2024-09-16 17:26:17 +02:00
.document-noOverflow {
overflow: hidden;
2024-08-22 17:07:05 +02:00
}