tailwind.config.cjs 322 B

1234567891011121314151617
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
  4. theme: {
  5. extend: {
  6. width: {
  7. 128: "32rem",
  8. 140: "35rem",
  9. 160: "40rem",
  10. },
  11. fontSize: {
  12. "20xl": "20em",
  13. },
  14. },
  15. },
  16. plugins: [],
  17. };