| 1234567891011121314151617181920212223 |
- 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: [],
- };
|