Files
IRTH-2/client/tailwind.config.js
T
2024-07-31 13:24:32 +05:00

13 lines
226 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
screens: {
tablet: "768px",
},
},
},
plugins: [],
};