Files
vault171/app/assets/tailwind/application.css
David Böhm 04f48acf95
Some checks failed
CI / scan_ruby (push) Has been cancelled
CI / scan_js (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / test (push) Has been cancelled
CI / system-test (push) Has been cancelled
Added autohide with animation for flash message
2026-05-24 04:21:47 +02:00

17 lines
343 B
CSS

@import "tailwindcss";
@theme {
/* 1. Die CSS-Variable für die Animation definieren */
--animate-shrink: shrink 5s linear forwards;
/* 2. Die dazugehörigen Keyframes festlegen */
@keyframes shrink {
0% {
transform: scaleX(1);
}
100% {
transform: scaleX(0);
}
}
}