New prittier rule. No trailing commas.

This commit is contained in:
Lucid Kobold
2021-12-29 09:03:35 -06:00
parent c56dbb96d4
commit b44021effa
15 changed files with 118 additions and 115 deletions

View File

@@ -4,7 +4,7 @@ import buttons from "./components/buttonStyles";
const config: ThemeConfig = {
initialColorMode: "dark",
useSystemColorMode: false,
useSystemColorMode: false
};
// const breakpoints = createBreakpoints({
@@ -29,19 +29,19 @@ const AppTheme = extendTheme({
footer: "#0097a7",
footerText: "black",
content: "#2d3748",
patreon: "#FF424D",
},
patreon: "#FF424D"
}
},
styles: {
global: {
body: {
bg: "gray.900",
},
},
bg: "gray.900"
}
}
},
components: {
Button: buttons,
},
Button: buttons
}
// breakpoints,
});