Skip to content

Commit

Permalink
🐛 Fix overflow issue for Theme and Settings pages
Browse files Browse the repository at this point in the history
Closes #291
  • Loading branch information
baptisteArno committed Feb 6, 2023
1 parent 77df555 commit 17d94a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const SettingsPage = () => {
<TypebotHeader />
<Flex h="full" w="full">
<SettingsSideMenu />
<Flex flex="1">
<Flex flex="1" overflow="hidden">
{publicTypebot && (
<TypebotViewer apiHost={getViewerUrl()} typebot={publicTypebot} />
)}
Expand Down
2 changes: 1 addition & 1 deletion apps/builder/src/features/theme/components/ThemePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const ThemePage = () => {
<TypebotHeader />
<Flex h="full" w="full">
<ThemeSideMenu />
<Flex flex="1">
<Flex flex="1" overflow="hidden">
{publicTypebot && (
<TypebotViewer apiHost={getViewerUrl()} typebot={publicTypebot} />
)}
Expand Down

0 comments on commit 17d94a9

Please sign in to comment.