Skip to content

Commit

Permalink
fix: make min-height=0px for tabs on container details page (#3993)
Browse files Browse the repository at this point in the history
* fix: make min-height=0px for tabs on container's details page

Fix #3992.

Signed-off-by: Denis Golovin <dgolovin@redhat.com>
  • Loading branch information
dgolovin committed Sep 21, 2023
1 parent ac4b665 commit 644de82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/renderer/src/lib/ui/DetailsPage.svelte
Expand Up @@ -50,7 +50,7 @@ export function close(): void {
<div class="flex flex-row px-2 border-b border-charcoal-400">
<slot name="tabs" />
</div>
<div class="h-full bg-charcoal-900">
<div class="h-full bg-charcoal-900 min-h-0">
<slot name="content" />
</div>
</div>
Expand Down

0 comments on commit 644de82

Please sign in to comment.