Files
fallback-site/tailwind.config.js
Yuriy Panov b210e4d2fb Initial commit: Amber Valley Community Hub fallback site
Vite + React 18 + Tailwind CSS community events video library with 42
topic-matched thumbnails, auth modal that always fails, and Docker/nginx
setup on port 8081.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-20 12:00:09 +06:00

32 lines
827 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,jsx}",
],
theme: {
extend: {
animation: {
'fade-in': 'fadeIn 0.5s ease-out forwards',
'slide-up': 'slideUp 0.3s ease-out forwards',
'pulse-soft': 'pulseSoft 2s ease-in-out infinite',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0', transform: 'translateY(20px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
slideUp: {
'0%': { opacity: '0', transform: 'translateY(40px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
pulseSoft: {
'0%, 100%': { opacity: '1' },
'50%': { opacity: '0.8' },
},
},
},
},
plugins: [],
}