chore: update web dependencies (#102)

* chore: update deps

* chore: remove craco

* chore: fix exports

* fix: filters list indexer bg

* fix: extend theme with correct color
This commit is contained in:
Raghu Saxena 2022-02-05 20:27:44 +08:00 committed by GitHub
parent c35744dc3a
commit 0076ea9129
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 4316 additions and 7268 deletions

View file

@ -1,32 +1,30 @@
const colors = require('tailwindcss/colors')
module.exports = {
purge: {
content: [
'./src/**/*.{tsx,ts,html,css}',
],
safelist: [
'col-span-1',
'col-span-2',
'col-span-3',
'col-span-4',
'col-span-5',
'col-span-6',
'col-span-7',
'col-span-8',
'col-span-9',
'col-span-10',
'col-span-11',
'col-span-12',
],
},
content: [
'./src/**/*.{tsx,ts,html,css}',
],
safelist: [
'col-span-1',
'col-span-2',
'col-span-3',
'col-span-4',
'col-span-5',
'col-span-6',
'col-span-7',
'col-span-8',
'col-span-9',
'col-span-10',
'col-span-11',
'col-span-12',
],
// purge: false,
darkMode: 'class', // or 'media' or 'class'
theme: {
extend: {
colors: {
gray: colors.gray,
teal: colors.teal,
}
gray: colors.zinc,
},
},
},
variants: {