You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
278 B

7 months ago
  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. content: [
  4. "./index.html",
  5. "./src/**/*.{vue,js,ts,jsx,tsx}",
  6. ],
  7. theme: {
  8. screens: {
  9. '3xl': '1920px',
  10. // => @media (min-width: 640px) { ... }
  11. },
  12. extend: {},
  13. },
  14. plugins: [],
  15. }