tailwind.config.js 477 B

1234567891011121314151617181920212223242526272829
  1. module.exports = {
  2. purge: [
  3. './src/**/*.html',
  4. './src/**/*.vue',
  5. './src/**/*.jsx',
  6. './src/**/*.js'
  7. ],
  8. darkMode: false, // or 'media' or 'class'
  9. theme: {
  10. extend: {
  11. height: {
  12. '50px': '50px',
  13. '100px': '100px'
  14. },
  15. width: {
  16. '23/100': '23%',
  17. '100px': '100px',
  18. '200px': '200px'
  19. }
  20. }
  21. },
  22. variants: {
  23. extend: {}
  24. },
  25. // corePlugins: {
  26. // preflight: false
  27. // },
  28. plugins: []
  29. }