tailwind.config.js 291 B

123456789101112131415
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
  4. theme: {
  5. extend: {},
  6. screens: {
  7. xs: '0px',
  8. sm: '576px',
  9. md: '768px',
  10. lg: '992px',
  11. xl: '1200px',
  12. },
  13. },
  14. plugins: [],
  15. }