mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-05-04 04:33:10 +00:00
Added fluid-tailwind and updated React to stable
This commit is contained in:
parent
ca7124dfe8
commit
157ba09980
3 changed files with 74 additions and 47 deletions
|
@ -1,20 +1,26 @@
|
|||
import fluid, { extract, screens, fontSize } from 'fluid-tailwind';
|
||||
import type { Config } from 'tailwindcss';
|
||||
|
||||
const config = {
|
||||
darkMode: ['class'],
|
||||
content: [
|
||||
'./pages/**/*.{ts,tsx,md,mdx}',
|
||||
'./components/**/*.{ts,tsx,md,mdx}',
|
||||
'./app/**/*.{ts,tsx,md,mdx}',
|
||||
'./src/**/*.{ts,tsx,md,mdx}',
|
||||
],
|
||||
content: {
|
||||
files: [
|
||||
'./pages/**/*.{ts,tsx,md,mdx}',
|
||||
'./components/**/*.{ts,tsx,md,mdx}',
|
||||
'./app/**/*.{ts,tsx,md,mdx}',
|
||||
'./src/**/*.{ts,tsx,md,mdx}',
|
||||
],
|
||||
extract,
|
||||
},
|
||||
prefix: '',
|
||||
theme: {
|
||||
screens,
|
||||
fontSize,
|
||||
container: {
|
||||
center: true,
|
||||
padding: '2rem',
|
||||
screens: {
|
||||
'2xl': '1400px',
|
||||
'2xl': '84rem',
|
||||
},
|
||||
},
|
||||
extend: {
|
||||
|
@ -74,7 +80,7 @@ const config = {
|
|||
},
|
||||
},
|
||||
},
|
||||
plugins: [require('tailwindcss-animate'), require('@tailwindcss/typography')],
|
||||
plugins: [require('tailwindcss-animate'), require('@tailwindcss/typography'), fluid],
|
||||
} satisfies Config;
|
||||
|
||||
export default config;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue