diff options
| author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-09-30 09:15:56 +0200 |
|---|---|---|
| committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-09-30 09:15:56 +0200 |
| commit | d0263ce46160cd4152c67381fab2ee557f3aa483 (patch) | |
| tree | b24a725d71b984e466ff478fbb4449111beeacac /tailwind.config.js | |
| parent | chore: Second version (diff) | |
| download | web-client-d0263ce46160cd4152c67381fab2ee557f3aa483.zip | |
feat(treewide): Switch to tailwindcss and add more components
Diffstat (limited to '')
| -rw-r--r-- | tailwind.config.js | 21 |
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") + ], +}; |
