-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (32 loc) · 910 Bytes
/
tailwind.config.js
File metadata and controls
33 lines (32 loc) · 910 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js,jsx}"],
plugins: [
function ({ addUtilities }) {
addUtilities(
{
'.minimal-resume-css *': {
color: '#000',
'font-family': "Times New Roman, Times, serif",
'line-height': 1.2
},
'.minimal-resume-css .section_heading': {
'font-weight': '600',
'font-size': '1.08rem',
'text-transform': 'uppercase'
},
'.minimal-resume-css ol, .minimal-resume-css ul': {
'padding-left': '1rem'
},
'.minimal-resume-css .summary_text *': {
'text-align': 'justify',
'background-color': 'transparent !important'
},
'.minimal-resume-css p': {
'font-size': '14px'
}
},
);
},
],
}