fix(css): don't target button globally (#1510)

* fix(css): don't target button globally

* fix(css): revert toast change
This commit is contained in:
TheCatLady
2021-04-27 11:23:36 -04:00
committed by GitHub
parent 2a912180b8
commit f78b9c1ca9
9 changed files with 20 additions and 28 deletions

View File

@@ -1,4 +1,4 @@
/* eslint-disable */
// eslint-disable-next-line @typescript-eslint/no-var-requires
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
@@ -59,19 +59,6 @@ module.exports = {
}),
},
},
variants: {
cursor: ['disabled'],
width: ['first', 'last', 'responsive'],
height: ['first', 'last', 'responsive'],
padding: ['first', 'last', 'responsive'],
borderWidth: ['first', 'last'],
margin: ['first', 'last', 'responsive'],
boxShadow: ['group-focus', 'responsive'],
opacity: ['disabled', 'hover', 'group-hover'],
ringColor: ['focus', 'focus-within', 'hover', 'active'],
scale: ['hover', 'focus', 'group-hover'],
zIndex: ['hover', 'responsive'],
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),