2
0

🐛 Fix overflow issue for Theme and Settings pages

Closes #291
This commit is contained in:
Baptiste Arnaud
2023-02-06 08:26:59 +01:00
parent 77df5556f4
commit 17d94a9f9f
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ export const SettingsPage = () => {
<TypebotHeader /> <TypebotHeader />
<Flex h="full" w="full"> <Flex h="full" w="full">
<SettingsSideMenu /> <SettingsSideMenu />
<Flex flex="1"> <Flex flex="1" overflow="hidden">
{publicTypebot && ( {publicTypebot && (
<TypebotViewer apiHost={getViewerUrl()} typebot={publicTypebot} /> <TypebotViewer apiHost={getViewerUrl()} typebot={publicTypebot} />
)} )}

View File

@ -16,7 +16,7 @@ export const ThemePage = () => {
<TypebotHeader /> <TypebotHeader />
<Flex h="full" w="full"> <Flex h="full" w="full">
<ThemeSideMenu /> <ThemeSideMenu />
<Flex flex="1"> <Flex flex="1" overflow="hidden">
{publicTypebot && ( {publicTypebot && (
<TypebotViewer apiHost={getViewerUrl()} typebot={publicTypebot} /> <TypebotViewer apiHost={getViewerUrl()} typebot={publicTypebot} />
)} )}