Skip to content

Commit

Permalink
fix(log): fix json log overflow scrolling not working
Browse files Browse the repository at this point in the history
Since `main` container it has overflow enabled by default it's not allowing json log container to overflow with scrolling enabled

Signed-off-by: Danil Kostromin <[email protected]>
  • Loading branch information
Danil Kostromin committed Jan 15, 2024
1 parent 5bd5778 commit c464a7e
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 @@ -75,7 +75,7 @@ export const LogFeature: FC<LogFeatureProps> = ({
)}
<div className="flex flex-col flex-grow h-full gap-1">
{children}
<main className="flex-grow bg-white rounded-md">
<main className="flex-grow bg-white rounded-md overflow-hidden">
<CardHeader label="Log">
<div className="flex items-center gap-2">
<ButtonTw
Expand Down

0 comments on commit c464a7e

Please sign in to comment.