12345678910111213141516171819202122 |
- 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: []
- }
|