23 lines
520 B
JavaScript
23 lines
520 B
JavaScript
|
const defaultTheme = require('tailwindcss/defaultTheme');
|
||
|
|
||
|
/** @type {import("@types/tailwindcss/tailwind-config").TailwindConfig } */
|
||
|
module.exports = {
|
||
|
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
|
||
|
important: true,
|
||
|
theme: {
|
||
|
extend: {
|
||
|
fontFamily: {
|
||
|
sans: ['"Inter var"', ...defaultTheme.fontFamily.sans],
|
||
|
},
|
||
|
screens: {
|
||
|
sm: '576px',
|
||
|
md: '768px',
|
||
|
lg: '992px',
|
||
|
xl: '1200px',
|
||
|
'2xl': '1600px',
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
plugins: [],
|
||
|
};
|