summaryrefslogtreecommitdiffstats
path: root/stalwart/tailwind.config.js
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-09-30 09:15:56 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-09-30 09:15:56 +0200
commitd0263ce46160cd4152c67381fab2ee557f3aa483 (patch)
treeb24a725d71b984e466ff478fbb4449111beeacac /stalwart/tailwind.config.js
parentchore: Second version (diff)
downloadweb-client-d0263ce46160cd4152c67381fab2ee557f3aa483.zip
feat(treewide): Switch to tailwindcss and add more components
Diffstat (limited to '')
-rw-r--r--stalwart/tailwind.config.js36
1 files changed, 0 insertions, 36 deletions
diff --git a/stalwart/tailwind.config.js b/stalwart/tailwind.config.js
deleted file mode 100644
index f8dfe93..0000000
--- a/stalwart/tailwind.config.js
+++ /dev/null
@@ -1,36 +0,0 @@
-/** @type {import('tailwindcss').Config} */
-module.exports = {
- content: ["*.html", "./src/**/*.rs", "./node_modules/preline/dist/*.js"],
- theme: {
- screens: {
- sm: '480px',
- md: '768px',
- lg: '1020px',
- xl: '1440px',
- },
- fontFamily: {
- sans: ['Inter', 'sans-serif'],
-
- },
- extend: {
- //https://play.tailwindcss.com/VCZwwz1e3R
- animation: {
- text: 'text 5s ease infinite',
- },
- keyframes: {
- text: {
- '0%, 100%': {
- 'background-size': '200% 200%',
- 'background-position': 'left center',
- },
- '50%': {
- 'background-size': '200% 200%',
- 'background-position': 'right center',
- },
- },
- },
- },
- },
- darkMode: 'class',
- plugins: [require('@tailwindcss/forms'), require("@tailwindcss/typography"), require("preline/plugin")],
-}