Remove decorative icons and update CORS configuration

This commit is contained in:
DaX
2025-06-20 13:05:36 +02:00
parent 18110ab159
commit 62a4891112
51 changed files with 4284 additions and 2385 deletions

View File

@@ -1,3 +1,23 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind utilities;
/* Prevent white flash on admin pages */
@layer base {
html {
background-color: rgb(249 250 251);
}
html.dark {
background-color: rgb(17 24 39);
}
body {
@apply bg-gray-50 dark:bg-gray-900 transition-none;
}
/* Disable transitions on page load to prevent flash */
.no-transitions * {
transition: none !important;
}
}