54 lines
954 B
JavaScript
54 lines
954 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
borderRadius: {
|
|
"2xl": "38.4px",
|
|
lg: "19.2px",
|
|
},
|
|
borderWidth: {
|
|
DEFAULT: "2.4px",
|
|
},
|
|
padding: {
|
|
6: "67.5px",
|
|
1: "11.25px",
|
|
4: "45px",
|
|
3: "33.75px",
|
|
2: "22.5px",
|
|
},
|
|
margin: {
|
|
6: "67.5px",
|
|
1: "11.25px",
|
|
4: "45px",
|
|
3: "33.75px",
|
|
2: "22.5px",
|
|
},
|
|
gap: {
|
|
2: "22.5px",
|
|
4: "45px",
|
|
8: "90px",
|
|
6: "67.5px",
|
|
9: "101.5px",
|
|
},
|
|
width: {
|
|
3: "33.75px",
|
|
},
|
|
height: {
|
|
6: "57.6px",
|
|
3: "33.75px",
|
|
},
|
|
minHeight: {
|
|
6: "57.6px",
|
|
},
|
|
minWidth: {
|
|
6: "57.6px",
|
|
},
|
|
fontSize: {
|
|
xs: "28.8px",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|