-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathtailwind.config.js
More file actions
executable file
·92 lines (87 loc) · 2.73 KB
/
tailwind.config.js
File metadata and controls
executable file
·92 lines (87 loc) · 2.73 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/** This file is part of Open-Capture.
Open-Capture is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Open-Capture is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Open-Capture. If not, see <https://www.gnu.org/licenses/gpl-3.0.html>.
@dev : Nathan Cheval <nathan.cheval@outlook.fr> */
module.exports = {
important: true,
content: [
'src/frontend/**/*.{html,ts}'
],
darkMode: 'media', // or 'media' or 'class'
theme: {
backgroundSize: {
'auto': 'auto',
'cover': 'cover',
'contain': 'contain',
'50': '50%',
'60': '60%',
'70': '70%',
'90': '90%',
'100': '100%'
},
extend: {
gridTemplateColumns: {
'20': 'repeat(20, minmax(0, 1fr))',
'21': 'repeat(21, minmax(0, 1fr))',
'22': 'repeat(22, minmax(0, 1fr))',
'24': 'repeat(24, minmax(0, 1fr))'
},
gridColumnStart: {
'13': '13',
'14': '14',
'15': '15',
'16': '16',
'17': '17',
'18': '18',
'19': '19',
'20': '20',
'21': '21',
'22': '22',
'23': '23',
'24': '24'
},
scale: {
'103': '1.03',
'105': '1.05'
},
backgroundImage: {
'verifier': "url('../../assets/imgs/Open-Capture_Verifier.svg')",
'splitter': "url('../../assets/imgs/Open-Capture_Splitter.svg')"
},
width: {
'30': '30%',
'1/7': '14.3%',
'1/75': '13.3%'
},
height: {
'100': '25rem',
'104': '26rem',
'full-overflow': 'calc(100vh - 8rem)'
},
maxWidth: {
'11/12': '91.6%'
},
minWidth: {
'56': '14rem'
},
colors: {
green: {
400: '#97BF3D'
},
gray: {
900: '#4C4C4E',
600: '#A7A8AA'
}
}
}
},
plugins: []
};