tailwind.config.js 479 B

1234567891011121314151617181920212223242526272829
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. content: [],
  4. theme: {
  5. extend: {
  6. screens: {
  7. 'phone': '640px',
  8. // => @media (min-width: 640px) { ... }
  9. 'pad': '1024px',
  10. // => @media (min-width: 1024px) { ... }
  11. 'pc': '1320px',
  12. // => @media (min-width: 1280px) { ... }
  13. },
  14. width: {
  15. "72": "18rem",
  16. },
  17. height: {
  18. "36": "10rem"
  19. },
  20. },
  21. },
  22. plugins: [],
  23. }