Files
digifi-www/tailwind.config.js
2024-03-13 23:31:36 +01:00

17 lines
297 B
JavaScript

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