studio-umzu/themes/duckquill/sass/_spoiler.scss
2025-08-27 16:56:14 +02:00

22 lines
335 B
SCSS

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;
}
}
}