16 lines
257 B
CSS
Raw Normal View History

2024-08-20 15:57:58 +02:00
.backdrop[aria-expanded] {
height: 100%;
width: 100%;
position: fixed;
top: 0;
left: 0;
background: var(--codex-background-backdrop);
backdrop-filter: blur(2px);
display: block;
2024-09-10 19:11:34 +02:00
z-index: 10;
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
}