fix(frontend): Runnable table overflow (#1119)

This commit is contained in:
Ádám Kovács
2023-01-17 12:51:14 +01:00
committed by GitHub
parent 49aeed88fa
commit 47f756d115
2 changed files with 3 additions and 3 deletions
@@ -311,7 +311,7 @@
<slot />
</div>
{:else}
<div class="grow min-w-1/2 {noMinH ? '' : 'min-h-[66%]'}">
<div class="block w-full h-full">
<slot />
</div>
{/if}
@@ -165,11 +165,11 @@
{#each $table.getRowModel().rows as row, rowIndex (row.id)}
<tr
class={classNames(
'last-of-type:!border-b-0',
selectedRowIndex === rowIndex
? 'bg-blue-100 hover:bg-blue-200'
: 'hover:bg-blue-50',
'divide-x',
'border-b w-full',
'divide-x w-full',
selectedRowIndex === rowIndex
? 'divide-blue-200 hover:divide-blue-300'
: 'divide-gray-200'