tailwind.config.js 363 B

123456789101112131415
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. content: ['./app/**/*.{js,jsx,ts,tsx}', './component/**/*.{js,jsx,ts,tsx}'],
  4. theme: {
  5. extend: {
  6. screens: {
  7. sm: '320px',
  8. md: '375px',
  9. lg: '390px',
  10. xl: '428px'
  11. }
  12. }
  13. },
  14. plugins: []
  15. };