Use forms with or without client-side JavaScript--no code duplication required!
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.
 
 
 

24 lines
545 B

  1. import type { Config } from 'tailwindcss'
  2. const config: Config = {
  3. content: [
  4. './src/pages/**/*.{js,ts,jsx,tsx,mdx}',
  5. './src/components/**/*.{js,ts,jsx,tsx,mdx}',
  6. './src/app/**/*.{js,ts,jsx,tsx,mdx}',
  7. ],
  8. theme: {
  9. extend: {
  10. backgroundImage: {
  11. 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
  12. 'gradient-conic':
  13. 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
  14. },
  15. minHeight: {
  16. 12: '3rem',
  17. },
  18. },
  19. },
  20. plugins: [],
  21. }
  22. export default config