You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
534 B

9 months ago
  1. const defaultTheme = require('tailwindcss/defaultTheme')
  2. module.exports = {
  3. content: [
  4. './public/*.html',
  5. './app/helpers/**/*.rb',
  6. './app/javascript/**/*.js',
  7. './app/views/**/*.{erb,haml,html,slim}'
  8. ],
  9. theme: {
  10. extend: {
  11. fontFamily: {
  12. sans: ['Inter var', ...defaultTheme.fontFamily.sans],
  13. },
  14. },
  15. },
  16. plugins: [
  17. require('@tailwindcss/forms'),
  18. require('@tailwindcss/aspect-ratio'),
  19. require('@tailwindcss/typography'),
  20. require('@tailwindcss/container-queries'),
  21. ]
  22. }