forked from RyderKeeny/ShellHacks-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.mjs
31 lines (31 loc) · 1.01 KB
/
tailwind.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/** @type {import('tailwindcss').Config} */
export default {
darkMode: ['class'],
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
borderRadius: {
lg: 'var(--radius)',
md: 'calc(var(--radius) - 2px)',
sm: 'calc(var(--radius) - 4px)',
},
colors: {},
keyframes: {
'pop-up': {
'0%': {
transform: 'scale(0.4)', // Start smaller
opacity: '0', // Fully transparent
},
'100%': {
transform: 'scale(1)', // End at full size
opacity: '1', // Fully visible
},
},
},
animation: {
'pop-up': 'pop-up 0.5s ease-out forwards', // Pop-up animation with ease-out timing
},
},
},
plugins: [require("tailwindcss-animate")],
};