Files
digifi-www/tailwind.config.js
T
2024-03-05 15:57:26 +01:00

16 lines
271 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
darkMode: "class",
theme: {
extend: {
colors: {},
screens: {
xxs: "400px",
xxl: "1900px",
},
},
},
plugins: [],
};