-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.backend.js
More file actions
36 lines (35 loc) · 977 Bytes
/
tailwind.backend.js
File metadata and controls
36 lines (35 loc) · 977 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
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
purge: {
content: ['./resources/js/backend/{Pages,Shared}/**/*.jsx', './resources/views/backend/**/*.blade.php'],
whitelistPatternsChildren: [/nprogress/],
},
theme: {
extend: {
inset: {
'1/2': '50%',
full: '100%',
},
minWidth: {
'48': '12rem',
'56': '14rem',
'64': '16rem',
},
minHeight: {
'48': '12rem',
'56': '14rem',
'64': '16rem',
},
spacing: {
'72': '18rem',
'84': '21rem',
'96': '24rem',
},
fontFamily: {
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
},
},
},
variants: {},
plugins: [require('@tailwindcss/ui')],
};