17 lines
343 B
CSS
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);
|
|
}
|
|
}
|
|
}
|