mirror of
https://github.com/koodiklinikka/koodiklinikka.fi.git
synced 2026-01-26 03:14:08 +00:00
29 lines
748 B
TypeScript
29 lines
748 B
TypeScript
import type { Config } from 'tailwindcss';
|
|
|
|
const config = {
|
|
darkMode: ['class'],
|
|
content: ['./pages/**/*.{ts,tsx}', './components/**/*.{ts,tsx}', './app/**/*.{ts,tsx}', './src/**/*.{ts,tsx}'],
|
|
prefix: '',
|
|
|
|
plugins: [],
|
|
|
|
theme: {
|
|
screens: {
|
|
xs: '440px', // => @media (min-width: 440px) { ... }
|
|
sm: '640px', // => @media (min-width: 640px) { ... }
|
|
md: '768px', // => @media (min-width: 768px) { ... }
|
|
lg: '1024px', // => @media (min-width: 1024px) { ... }
|
|
xl: '1280px', // => @media (min-width: 1280px) { ... }
|
|
'2xl': '1536px', // => @media (min-width: 1536px) { ... }
|
|
},
|
|
|
|
extend: {
|
|
fontSize: {
|
|
xxs: '0.625rem',
|
|
},
|
|
},
|
|
},
|
|
} satisfies Config;
|
|
|
|
export default config;
|