diff options
author | Galen Guyer <galen@galenguyer.com> | 2020-11-14 19:10:56 -0500 |
---|---|---|
committer | Galen Guyer <galen@galenguyer.com> | 2020-11-14 19:10:56 -0500 |
commit | cf76432d4821481c19278b488efd84b4df26525b (patch) | |
tree | d36d8802befc59e4b7d31b539130ba56d51c62c5 /tailwind.config.js | |
parent | 3cd68d3504db4ad63abdec64e7de226ca2cbcb01 (diff) |
make buttons better
buttons change their background and text color on hover now to make
their purpose more clear, and the Link element covers the whole button
now. Thanks for the suggestions Tessa!
Diffstat (limited to 'tailwind.config.js')
-rw-r--r-- | tailwind.config.js | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/tailwind.config.js b/tailwind.config.js index 3de92ff..d6359c8 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,11 +1,13 @@ module.exports = { purge: ["./src/**/*.html", "./src/**/*.jsx", "./src/**/*.js"], theme: { - extend: { - screens: { - xs: { max: "400px" }, + extend: { + screens: { + xs: { max: "400px" }, + }, }, - }, }, - }; -
\ No newline at end of file + variants: { + textColor: ["responsive", "hover", "focus", "group-hover"], + }, +}; |