mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
[WEB-4464] fix: content wrapper overflow (#7367)
This commit is contained in:
committed by
GitHub
parent
dadd76b3ed
commit
9d88fc999c
@@ -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>
|
||||
));
|
||||
|
||||
Reference in New Issue
Block a user