From d0263ce46160cd4152c67381fab2ee557f3aa483 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Tue, 30 Sep 2025 09:15:56 +0200 Subject: feat(treewide): Switch to tailwindcss and add more components --- tailwind.config.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 tailwind.config.js (limited to 'tailwind.config.js') 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") + ], +}; -- cgit 1.4.1