fix: Error at table size in dark mode

This commit is contained in:
Tom Moor
2021-12-05 18:30:21 -08:00
parent 2db49820f9
commit d9cb40ae84
2 changed files with 5 additions and 6 deletions

View File

@@ -227,9 +227,9 @@ export const dark: DefaultTheme = {
export const lightMobile = light;
export const darkMobile = (theme: DefaultTheme): DefaultTheme => ({
...theme,
export const darkMobile = {
...dark,
background: colors.black,
});
};
export default light;