Skip to content

Commit

Permalink
style(log): fix horizontal page overflow
Browse files Browse the repository at this point in the history
Log container and run details sometime will overflow
page horizontally this will prevent this from happening
and will allow log frame to be contained by window width

Signed-off-by: Danil Kostromin <[email protected]>
  • Loading branch information
Danil Kostromin committed Mar 27, 2024
1 parent 738c23d commit b4151e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/bublik/features/log/src/lib/log-feature.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export const LogFeature: FC<LogFeatureProps> = ({
<TreeContainer runId={runId} />
</Resizable>
)}
<div className="flex flex-col flex-grow h-full gap-1">
<div className="flex flex-col flex-grow h-full gap-1 overflow-hidden">
{children}
<main className="flex-grow bg-white rounded-md overflow-hidden">
<CardHeader label="Log">
Expand Down

0 comments on commit b4151e5

Please sign in to comment.