-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (34 loc) · 905 Bytes
/
tailwind.config.js
File metadata and controls
35 lines (34 loc) · 905 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
background: '#f0edf4',
},
screens: {
sm: '320px',
},
flex: {
0: '0 0 135px',
},
animation: {
'spin-slow': 'spin 2s linear infinite',
},
},
fontFamily: {
primary: 'Nunito, sans-serif',
secondary: 'League Spartan, sans-serif',
},
},
plugins: [
require('@tailwindcss/line-clamp'),
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/typography'),
require('tailwindcss-animate'),
require('tailwindcss-highlights'),
],
};