19 lines
310 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);
display: none;
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-08-29 18:12:26 +02:00
@media (min-width: 800px) {
.document-noOverflow {
overflow: hidden;
}
2024-08-22 17:07:05 +02:00
}