mirror of
https://github.com/dergigi/boris.git
synced 2025-12-17 06:34:24 +01:00
- Replace CSS classes with Tailwind utilities - Use gradient backgrounds with conditional colors - Add shimmer animation to Tailwind config - Remove 80+ lines of CSS from reader.css - Maintain z-index layering (1102) above mobile overlays - Responsive design with utility classes
20 lines
344 B
JavaScript
20 lines
344 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
'./index.html',
|
|
'./src/**/*.{ts,tsx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
keyframes: {
|
|
shimmer: {
|
|
'0%': { transform: 'translateX(-100%)' },
|
|
'100%': { transform: 'translateX(100%)' },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|