[WEB-4464] fix: content wrapper overflow (#7367)
This commit is contained in:
parent
dadd76b3ed
commit
9d88fc999c
1 changed files with 1 additions and 1 deletions
|
|
@ -4,6 +4,6 @@ import { observer } from "mobx-react";
|
|||
|
||||
export const WorkspaceContentWrapper = observer(({ children }: { children: React.ReactNode }) => (
|
||||
<div className="flex relative size-full overflow-hidden bg-custom-background-90 rounded-lg transition-all ease-in-out duration-300">
|
||||
<div className="size-full p-2 flex-grow transition-all ease-in-out duration-300">{children}</div>
|
||||
<div className="size-full p-2 flex-grow transition-all ease-in-out duration-300 overflow-hidden">{children}</div>
|
||||
</div>
|
||||
));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue