From ab03835a199f43f0b2811dfea35dafdd91daa445 Mon Sep 17 00:00:00 2001 From: Anton Tranelis Date: Thu, 20 Mar 2025 10:38:00 +0000 Subject: [PATCH] deleted tailwind.config.js which is not eeded anymore --- tailwind.config.js | 49 ---------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 tailwind.config.js diff --git a/tailwind.config.js b/tailwind.config.js deleted file mode 100644 index c62f86ea..00000000 --- a/tailwind.config.js +++ /dev/null @@ -1,49 +0,0 @@ -/** @type {import('tailwindcss').Config} */ -module.exports = { - content: ['./src/**/*.{js,jsx,ts,tsx}'], - theme: { - extend: { - zIndex: { - 3000: '3000', - 2000: '2000', - 1000: '1000', - 500: '500', - }, - minWidth: { - 80: '320px', - 64: '240px', - 56: '224px', - }, - maxWidth: { - 52: '208px', - 64: '240px', - 72: '288px', - }, - minHeight: { - 80: '320px', - 64: '240px', - 56: '224px', - }, - fontFamily: { - sans: ['Helvetica', 'sans-serif', 'Roboto'], - }, - fontSize: { - map: '13px', - }, - lineHeight: { - map: '1.4em', - }, - }, - keyframes: { - pulseGrow: { - '0%, 100%': { transform: 'scale(1.00)' }, - '80%': { transform: 'scale(1.00)' }, - '90%': { transform: 'scale(0.95)' }, - }, - }, - animation: { - pulseGrow: 'pulseGrow 2s ease-in-out infinite', - }, - }, - prefix: 'tw-', -}