aboutsummaryrefslogtreecommitdiff
path: root/tailwind.config.js
diff options
context:
space:
mode:
authorGalen Guyer <galen@galenguyer.com>2020-11-14 12:50:06 -0500
committerGalen Guyer <galen@galenguyer.com>2020-11-14 12:50:06 -0500
commit24aef8d70f7602ab241f75e38baf8df028378b7d (patch)
treef31dd64b251ea256ca32482f8ed0271a3c02d650 /tailwind.config.js
parent0786e9cde18448692466c61217d1d7d65f23594f (diff)
Add tailwind css
Diffstat (limited to 'tailwind.config.js')
-rw-r--r--tailwind.config.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/tailwind.config.js b/tailwind.config.js
new file mode 100644
index 0000000..3de92ff
--- /dev/null
+++ b/tailwind.config.js
@@ -0,0 +1,11 @@
+module.exports = {
+ purge: ["./src/**/*.html", "./src/**/*.jsx", "./src/**/*.js"],
+ theme: {
+ extend: {
+ screens: {
+ xs: { max: "400px" },
+ },
+ },
+ },
+ };
+ \ No newline at end of file