34 lines
573 B
JavaScript
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: [],
|
|
};
|