add a fallback in case animations aren't supported but it doesn't matter because netsurf doesn't support @supports???

This commit is contained in:
Luna 2025-11-16 00:19:46 -03:00
parent 8517c24dc6
commit 72cddae95f

View file

@ -117,3 +117,10 @@ html {
animation: 4.5s 1 linear js; animation: 4.5s 1 linear js;
position: fixed; position: fixed;
} }
@supports not (animation: 1s test) {
.nojs {
display: block;
visibility: visible
}
}