tailwind.config.js 327 B

1234567891011121314151617
  1. module.exports = {
  2. content: [
  3. "./index.html",
  4. "./src/**/*.{vue,js}",
  5. ],
  6. theme: {
  7. extend: {
  8. width: {
  9. '414': '26rem',
  10. '606': '38rem',
  11. '750': '47rem',
  12. '990': '62rem',
  13. }
  14. },
  15. },
  16. plugins: [],
  17. }