| 1234567891011121314151617 |
- /** @type {import('tailwindcss').Config} */
- module.exports = {
- content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
- theme: {
- extend: {
- width: {
- 128: "32rem",
- 140: "35rem",
- 160: "40rem",
- },
- fontSize: {
- "20xl": "20em",
- },
- },
- },
- plugins: [],
- };
|