summaryrefslogtreecommitdiffstats
path: root/tailwind.js
diff options
context:
space:
mode:
Diffstat (limited to 'tailwind.js')
-rw-r--r--tailwind.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/tailwind.js b/tailwind.js
new file mode 100644
index 0000000..542125d
--- /dev/null
+++ b/tailwind.js
@@ -0,0 +1,14 @@
1 module.exports = {
2 theme: {
3 extend: {
4 spacing: {
5 '90': '90vh',
6 },
7
8 fontFamily: {
9 'default': ['"Readex Pro"', 'sans-serif'],
10 'fira': ['"Fira Code"', 'monospace']
11 }
12 }
13 }
14 }