-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (42 loc) · 961 Bytes
/
tailwind.config.js
File metadata and controls
44 lines (42 loc) · 961 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
36
37
38
39
40
41
42
43
44
/** @type {import('tailwindcss').Config} */
import { addDynamicIconSelectors } from '@iconify/tailwind';
export default {
content: ['./src/**/*.{js,ts,jsx,tsx}', './index.html'],
theme: {
fontFamily: {
sans: ['Open Sans', 'sans-serif'],
mono: ['ui-monospace', 'SFMono-Regular', 'Consolas', 'Menlo', 'Monaco'],
},
extend: {
backgroundColor: {
'sky-blue': '#D0DFE6',
},
width: {
'50vw': '50vw',
'60vw': '60vw',
'70vw': '70vw',
'80vw': '80vw',
'90vw': '90vw',
'100vw': '100vw',
},
height: {
'50vh': '50vh',
'60vh': '60vh',
'70vh': '70vh',
'80vh': '80vh',
'90vh': '90vh',
'100vh': '100vh',
},
translate: {
'1/2n': 'translate()',
},
flexGrow: {
2: '2',
},
flex: {
'1/2': '50%',
},
},
},
plugins: [addDynamicIconSelectors()],
};