tailwind.config.cjs 217 B

123456789101112
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
  4. theme: {
  5. extend: {
  6. width: {
  7. 96: '24rem',
  8. },
  9. },
  10. },
  11. plugins: [],
  12. };