Преглед на файлове

feat(ui): smooth pages transitions

Smooth transitions are pretty nice,
see https://htmhell.dev/adventcalendar/2024/3/
jvoisin преди 6 месеца
родител
ревизия
29015903ba
променени са 1 файла, в които са добавени 12 реда и са изтрити 0 реда
  1. 12 0
      internal/ui/static/css/common.css

+ 12 - 0
internal/ui/static/css/common.css

@@ -82,6 +82,18 @@ a:hover {
     translate: -50% 0;
 }
 
+/* Smoother pages transition */
+@media not all and (prefers-reduced-motion: reduce) {
+    @view-transition {
+        navigation: auto;
+    }
+}
+@media (prefers-reduced-motion: reduce) {
+  @view-transition {
+    navigation: none;
+  }
+}
+
 /* Header and main menu */
 .header {
     margin-top: 10px;