Fix linting issues
This commit is contained in:
parent
7366131817
commit
a5939ffb50
21 changed files with 117 additions and 118 deletions
|
@ -1,4 +1,4 @@
|
|||
defaultTheme = require('tailwindcss/defaultTheme')
|
||||
let defaultTheme = require('tailwindcss/defaultTheme')
|
||||
|
||||
module.exports = {
|
||||
theme: {
|
||||
|
@ -9,7 +9,7 @@ module.exports = {
|
|||
100: '#29aae1',
|
||||
200: '#018dc7',
|
||||
300: '#0e68a7',
|
||||
400: '#004f86',
|
||||
400: '#004f86'
|
||||
},
|
||||
green: '#398002',
|
||||
grey: {
|
||||
|
@ -19,11 +19,11 @@ module.exports = {
|
|||
400: '#bbb',
|
||||
500: '#888',
|
||||
600: '#555',
|
||||
700: '#333',
|
||||
700: '#333'
|
||||
},
|
||||
orange: {
|
||||
100: '#fa9903',
|
||||
200: '#ffb401',
|
||||
200: '#ffb401'
|
||||
},
|
||||
purple: '#991faf',
|
||||
red: '#cc1f1a',
|
||||
|
@ -36,30 +36,30 @@ module.exports = {
|
|||
borderWidth: {
|
||||
3: '3px',
|
||||
6: '6px',
|
||||
10: '10px',
|
||||
10: '10px'
|
||||
},
|
||||
boxShadow: {
|
||||
md: '0 0 10px 0 rgba(0,0,0,0.1)',
|
||||
md: '0 0 10px 0 rgba(0,0,0,0.1)'
|
||||
},
|
||||
fontFamily: {
|
||||
sans: ['Proxima Nova', ...defaultTheme.fontFamily.sans],
|
||||
sans: ['Proxima Nova', ...defaultTheme.fontFamily.sans]
|
||||
},
|
||||
fontSize: {
|
||||
'2xs': '.625rem', // 10px
|
||||
'2xs': '.625rem' // 10px
|
||||
},
|
||||
spacing: {
|
||||
'2px': '2px',
|
||||
48: '10rem',
|
||||
56: '14rem',
|
||||
64: '16rem',
|
||||
64: '16rem'
|
||||
},
|
||||
width: {
|
||||
56: '14rem',
|
||||
},
|
||||
},
|
||||
56: '14rem'
|
||||
}
|
||||
}
|
||||
},
|
||||
plugins: [
|
||||
require('tailwindcss-spaced-items')({ values: defaultTheme.spacing }),
|
||||
require('tailwindcss-visuallyhidden')(),
|
||||
],
|
||||
require('tailwindcss-visuallyhidden')()
|
||||
]
|
||||
}
|
||||
|
|
Reference in a new issue