-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtailwind.config.mjs
46 lines (46 loc) · 1.26 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
darkMode: 'selector',
theme: {
extend: {
screens: {
sm: '480px', // 3 cards per column (fluid width)
md: '640px', // 3 cards per column (fixes width)
lg: '850px', // 4 cards per column (fixed width)
xl: '1270px', // 6 cards per column (fixed width)
},
boxShadow: {
card: '0 2px 4px -1px rgba(0, 0, 0, 0.10)',
'card-hover': '0 3px 6px -1px rgba(0, 0, 0, 0.10)',
'card-ring': 'inset 0 0 0 1px #60a5fa, 0 0 0 2px #60a5fa', // blue 400
},
colors: {
'slate-775': '#232F42',
},
maxWidth: {
128: '32rem',
},
animation: {
shake: 'shake 0.82s cubic-bezier(.36,.07,.19,.97) both',
},
keyframes: {
shake: {
'10%, 90%': {
transform: 'translate3d(-1px, 0, 0)',
},
'20%, 80%': {
transform: 'translate3d(2px, 0, 0)',
},
'30%, 50%, 70%': {
transform: 'translate3d(-4px, 0, 0)',
},
'40%, 60%': {
transform: 'translate3d(4px, 0, 0)',
},
},
},
},
},
plugins: [],
};