]> danix's work - danix.xyz-2.git/commitdiff
feat: add animation utility classes (.animate-fade-in, .animate-slide-up, .animate...
authorDanilo M. <redacted>
Fri, 17 Apr 2026 07:23:16 +0000 (09:23 +0200)
committerDanilo M. <redacted>
Fri, 17 Apr 2026 07:23:16 +0000 (09:23 +0200)
themes/danix-xyz-hacker/assets/css/main.css

index 266e1e30c1821a94730eef27fcbc2c3e127de06c..281c8a91dbbd00453db7429dc8705df0c14e247f 100644 (file)
@@ -987,6 +987,20 @@ html.theme-light .form-select {
   }
 }
 
+/* Animation Utility Classes */
+
+.animate-fade-in {
+  animation: fadeIn 300ms ease-out;
+}
+
+.animate-slide-up {
+  animation: slideUp 300ms ease-out;
+}
+
+.animate-spin-loader {
+  animation: spin 600ms linear infinite;
+}
+
 /* Toast variants */
 .toast-success {
   border-color: #10b981;