feat: basic ui layout

This commit is contained in:
鲁树人
2023-05-07 23:29:37 +01:00
parent 53682a1cdb
commit 38aa81b5bc
16 changed files with 375 additions and 104 deletions

17
src/theme.ts Normal file
View File

@@ -0,0 +1,17 @@
import { extendTheme } from '@chakra-ui/react';
export const theme = extendTheme({
styles: {
global: {
body: {
minHeight: '100vh',
},
},
},
sizes: {
footer: {
container: '7rem',
content: '5rem',
},
},
});