From 72cddae95f3e47625812380bb13c5eaa9874dfa8 Mon Sep 17 00:00:00 2001 From: Luna Date: Sun, 16 Nov 2025 00:19:46 -0300 Subject: [PATCH] add a fallback in case animations aren't supported but it doesn't matter because netsurf doesn't support @supports??? --- assets/animations.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/assets/animations.css b/assets/animations.css index 9fa030f..8446d90 100644 --- a/assets/animations.css +++ b/assets/animations.css @@ -116,4 +116,11 @@ html { .js { animation: 4.5s 1 linear js; position: fixed; +} + +@supports not (animation: 1s test) { + .nojs { + display: block; + visibility: visible + } } \ No newline at end of file