mirror of
https://github.com/dergigi/boris.git
synced 2025-12-27 11:34:50 +01:00
- Change from @tailwind directives to @import syntax - Move shimmer keyframes to CSS file (v4 convention) - Fix Tailwind classes not being processed
8 lines
127 B
CSS
8 lines
127 B
CSS
@import "tailwindcss";
|
|
|
|
@keyframes shimmer {
|
|
0% { transform: translateX(-100%); }
|
|
100% { transform: translateX(100%); }
|
|
}
|
|
|