summary refs log tree commit diff stats
path: root/tailwind.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'tailwind.config.js')
-rw-r--r--tailwind.config.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/tailwind.config.js b/tailwind.config.js
new file mode 100644
index 0000000..d4be7aa
--- /dev/null
+++ b/tailwind.config.js
@@ -0,0 +1,21 @@
+/** @type {import('tailwindcss').Config} */
+module.exports = {
+  content: ["*.html", "./src/**/*.rs"],
+  theme: {
+    screens: {
+      sm: "480px",
+      md: "768px",
+      lg: "1020px",
+      xl: "1440px",
+    },
+    fontFamily: {
+      sans: ["Inter", "sans-serif"],
+    },
+  },
+  darkMode: "class",
+  plugins: [
+    // require('@tailwindcss/forms'),
+    // require("@tailwindcss/typography"),
+    // require("preline/plugin")
+  ],
+};