Skip to content

Commit

Permalink
Update tailwind.config.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Razielini committed Aug 7, 2020
1 parent b0909b8 commit 9b79f1e
Showing 1 changed file with 17 additions and 8 deletions.
25 changes: 17 additions & 8 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,25 @@
** Default: https://github.com/tailwindcss/tailwindcss/blob/master/stubs/defaultConfig.stub.js
*/
module.exports = {
purge: [
'./pages/**/*.vue',
'./components/**/*.vue',
'./plugins/**/*.vue',
'./static/**/*.vue',
'./store/**/*.vue'
],
prefix: 'tw-',
important: false,
separator: ':',
purge: {
enabled: true,
content: [
'components/**/*.vue',
'layouts/**/*.vue',
'pages/**/*.vue',
'plugins/**/*.js',
'nuxt.config.js'
],
options: {
whitelist: [
],
whitelistPatternsChildren: [
]
}
},
theme: {
screens: {
sm: '640px',
Expand All @@ -35,7 +44,7 @@ module.exports = {
borderinput: '#88623b',
bgitembench: '#211b14',
borderitembench: '#131111',
hoverpagination: '#b8905f',
hoverpagination: '#b8905f'
},
spacing: {
px: '1px',
Expand Down

0 comments on commit 9b79f1e

Please sign in to comment.