This repository has been archived on 2025-08-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
web-app-template/input.css
Tim Wundenberg 4a7551a7f7
All checks were successful
Build Docker Image / Build-Docker-Image (push) Successful in 2m51s
fix(deps): migrate tailwindcss to v4
2025-02-03 22:04:47 +01:00

35 lines
692 B
CSS

@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);
}
}