Not gonna work

This commit is contained in:
Fergal Moran
2022-04-09 15:30:26 +01:00
parent 02d2432419
commit f44fc3e5cc
16 changed files with 575 additions and 110 deletions

View File

@@ -1,18 +1,19 @@
const defaultTheme = require("tailwindcss/defaultTheme");
const windmill = require("@windmill/react-ui/config");
module.exports = {
const config = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
fontFamily: {
Rampart: ["Raleway", "sans-serif"],
},
boxShadow: {
bottom:
"0 5px 6px -7px rgba(0, 0, 0, 0.6), 0 2px 4px -5px rgba(0, 0, 0, 0.06)",
},
},
},
plugins: [],
};
module.exports = {
...windmill(config),
...config,
};