This commit is contained in:
Diego Imbert
2026-02-05 17:22:32 +01:00
parent bacdbbbf20
commit 6558efd58b
2 changed files with 3 additions and 3 deletions

View File

@@ -780,7 +780,7 @@
<Splitpanes>
<Pane minSize={40}>
<div class="h-full flex">
<div class="flex flex-col flex-1 m-4">
<div class="flex flex-col flex-1 m-4 mr-2">
<!-- Runs table. Add overflow-hidden because scroll is handled inside the runs table based on this wrapper height -->
<div class="grow min-h-0 overflow-y-hidden overflow-x-auto">
{#if jobs}
@@ -850,7 +850,7 @@
</div>
</Pane>
<AnimatedPane size={40} minSize={15} class="flex flex-col" opened={selectedIds.length > 0}>
<div class="mt-14 overflow-y-auto pr-4">
<div class="mt-14 overflow-y-auto pr-4 ml-2">
{#if selectionMode === 're-run'}
<BatchReRunOptionsPane {selectedIds} bind:options={batchReRunOptions} />
{:else if selectedIds.length === 1}

View File

@@ -196,7 +196,7 @@
>
<div>
<div
class="grid sticky top-0 w-full min-h-6 my-2 pr-4 items-center"
class="grid sticky top-0 w-full min-h-6 my-2 pr-4 items-end"
class:grid-runs-table={!containsLabel && !selectionMode && showTag}
class:grid-runs-table-with-labels={containsLabel && !selectionMode && showTag}
class:grid-runs-table-selection={!containsLabel && selectionMode && showTag}