tailwind.config.js 725 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. module.exports = {
  2. purge: {
  3. content: [
  4. '../../public/*.html',
  5. '../../public/**/*.html',
  6. ],
  7. safelist: [
  8. '.modal-overlay',
  9. '.modal',
  10. '.modal-header',
  11. '.modal-title',
  12. '.modal-closer',
  13. '.modal-body',
  14. 'closed',
  15. ]
  16. },
  17. darkMode: false, // or 'media' or 'class'
  18. theme: {
  19. flex: {
  20. '1': '1 1 0%',
  21. auto: '1 1 auto',
  22. initial: '0 1 auto',
  23. none: 'none',
  24. '1-1/4': '1 1 25%',
  25. '1-1/3': '1 1 33.3333333%',
  26. '1-1/2': '1 1 50%',
  27. },
  28. extend: {
  29. screens: {
  30. 'xs': '400px',
  31. }
  32. },
  33. },
  34. variants: {
  35. extend: {
  36. fontSize: ["hover"],
  37. lineHeight: ["hover"]
  38. },
  39. },
  40. plugins: [],
  41. }