tailwind.config.js 344 B

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