tailwind.config.js 672 B

12345678910111213141516171819202122232425262728293031323334353637
  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. },
  30. variants: {
  31. extend: {
  32. fontSize: ["hover"],
  33. lineHeight: ["hover"]
  34. },
  35. },
  36. plugins: [],
  37. }