tailwind: fmt

This commit is contained in:
Philippe Loctaux 2024-11-19 19:55:20 +01:00
parent 18f4e7d958
commit db66f74900

View file

@ -1,16 +1,16 @@
/** @type {import('tailwindcss').Config} */ /** @type {import('tailwindcss').Config} */
module.exports = { module.exports = {
content: { content: {
relative: true, relative: true,
files: ["./src/**/*.rs"], files: ["./src/**/*.rs"],
},
theme: {
extend: {
height: {
almostscreen: "90vh",
halfscreen: "60vh",
}
}, },
theme: { },
extend: { plugins: [],
height: { }
almostscreen: "90vh",
halfscreen: "60vh",
}
},
},
plugins: [],
}