This commit is contained in:
Aron Petau 2025-08-27 16:56:14 +02:00
commit d013ece0f3
363 changed files with 20823 additions and 0 deletions

View file

@ -0,0 +1,22 @@
span.spoiler {
filter: blur(0.25rem);
transition: var(--transition);
&:hover,
&:active {
filter: none;
}
&.solid {
filter: none;
border-radius: var(--rounded-corner-small);
background-color: var(--fg-muted-4);
color: transparent;
&:hover,
&:active {
background-color: transparent;
color: inherit;
}
}
}