Files
IRTH-Touch/client/tailwind.config.js
T
2024-07-02 18:04:49 +05:00

34 lines
573 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
borderWidth: {
DEFAULT: "2.4px",
},
padding: {
6: "67.5px",
1: "11.25px",
},
gap: {
2: "22.5px",
4: "45px",
8: "90px",
},
minHeight: {
6: "57.6px",
},
height: {
6: "57.6px",
},
minWidth: {
6: "57.6px",
},
fontSize: {
xs: "28.8px",
},
},
},
plugins: [],
};