12 lines
225 B
CSS
Raw Normal View History

2024-08-22 17:41:44 +02:00
.dialog {
background-color: var(--codex-background-secondary);
border: none;
color: var(--codex-color);
min-width: 200px;
&::backdrop {
background: rgba(70, 70, 70, 0.75);
backdrop-filter: blur(2px);
}
2024-08-22 17:41:44 +02:00
}