mirror of
https://git.unlock-music.dev/um/um-react.git
synced 2024-11-24 00:02:16 +00:00
18 lines
262 B
TypeScript
18 lines
262 B
TypeScript
import { extendTheme } from '@chakra-ui/react';
|
|
|
|
export const theme = extendTheme({
|
|
styles: {
|
|
global: {
|
|
body: {
|
|
minHeight: '100vh',
|
|
},
|
|
},
|
|
},
|
|
sizes: {
|
|
footer: {
|
|
container: '7rem',
|
|
content: '5rem',
|
|
},
|
|
},
|
|
});
|