fix(deps): migrate tailwindcss to v4
All checks were successful
Build Docker Image / Build-Docker-Image (push) Successful in 2m51s

This commit is contained in:
2025-02-03 22:01:02 +01:00
parent 827a1271a4
commit 4a7551a7f7
7 changed files with 852 additions and 1291 deletions

34
input.css Normal file
View File

@@ -0,0 +1,34 @@
@import 'tailwindcss';
@source './static/**/*.js';
@theme {
--animate-fade: fadeOut 0.25s ease-in;
@keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
}
/*
The default border color has changed to `currentColor` in Tailwind CSS v4,
so we've added these compatibility styles to make sure everything still
looks the same as it did with Tailwind CSS v3.
If we ever want to remove these styles, we need to add an explicit border
color utility to any element that depends on these defaults.
*/
@layer base {
*,
::after,
::before,
::backdrop,
::file-selector-button {
border-color: var(--color-gray-200, currentColor);
}
}