-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
62 lines (62 loc) · 1.46 KB
/
tailwind.config.js
File metadata and controls
62 lines (62 loc) · 1.46 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
module.exports = {
purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class', // or 'media' or 'class'
theme: {
textIndent: { // defaults to {}
'0': '0',
'1': '0.25rem',
'2': '0.5rem',
'4': '1rem',
},
extend: {
textIndent: { // defaults to {}
'1': '0.5rem',
'2': '1.0rem',
},
gridTemplateRows: {
'pancake': '1fr auto 1fr'
},
width: {
'full-minus-padding': 'calc(100% - 6em)',
'full-minus-padding-small': 'calc(100% - 2em)',
'half': '50%'
},
maxWidth: {
'full-minus-padding': 'calc(100% - 6em)',
'full-minus-padding-small': 'calc(100% - 2em)'
},
minHeight: {
'card': '14em'
},
textColor: {
'discord': '#23272A',
'github': '#000000',
'youtube': '#FF0000',
'steam': '#151D38',
'twitch': '#9147FF'
},
transitionProperty: {
'width': 'width',
'fill': 'fill'
},
screens: {
'custombp': {'raw': '(min-height: 34em)'}
},
inset: {
'full-plus': 'calc(100% + .5rem)'
},
transitionTimingFunction: {
back: "cubic-bezier(0.18, 0.89, 0.32, 1.28)"
},
fontFamily: {
'rubik': ['Rubik', 'sans-serif'],
}
},
},
variants: {
},
plugins: [
require('tailwindcss-interaction-variants'),
require('tailwindcss-typography')()
]
}