mirror of
https://github.com/responsively-org/responsively-app
synced 2024-11-10 23:04:20 +00:00
Merge pull request #789 from responsively-org/device-manager-bg-fix
Device manager overflow background fix
This commit is contained in:
commit
74133209b6
2 changed files with 13 additions and 4 deletions
|
@ -14,7 +14,7 @@ const ThemeProvider = ({ children }: { children: React.ReactNode }) => {
|
|||
}, [darkMode]);
|
||||
|
||||
return (
|
||||
<div className="h-screen w-screen bg-slate-200 text-light-normal dark:bg-slate-800 dark:text-dark-normal">
|
||||
<div className="min-w-screen min-h-screen bg-slate-200 text-light-normal dark:bg-slate-800 dark:text-dark-normal">
|
||||
{children}
|
||||
</div>
|
||||
);
|
||||
|
|
|
@ -17,12 +17,21 @@ module.exports = {
|
|||
normal: colors.gray['700'],
|
||||
},
|
||||
},
|
||||
maxWidth: (theme) => ({
|
||||
...theme('spacing'),
|
||||
}),
|
||||
fontFamily: {
|
||||
sans: ['Lato', ...defaultTheme.fontFamily.sans],
|
||||
},
|
||||
maxHeight: (theme) => ({
|
||||
...theme('spacing'),
|
||||
}),
|
||||
maxWidth: (theme) => ({
|
||||
...theme('spacing'),
|
||||
}),
|
||||
minHeight: (theme) => ({
|
||||
...theme('spacing'),
|
||||
}),
|
||||
minWidth: (theme) => ({
|
||||
...theme('spacing'),
|
||||
}),
|
||||
},
|
||||
},
|
||||
plugins: [typography],
|
||||
|
|
Loading…
Reference in a new issue