Added autohide with animation for flash message
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

This commit is contained in:
2026-05-24 04:21:47 +02:00
parent b73f614f1c
commit 04f48acf95
4 changed files with 108 additions and 15 deletions

View File

@@ -1 +1,16 @@
@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);
}
}
}