mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-09 00:04:10 +00:00
fix(frontend): Runnable table overflow (#1119)
This commit is contained in:
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user