Skip to content

Commit

Permalink
resize first column (#4483)
Browse files Browse the repository at this point in the history
  • Loading branch information
briangregoryholmes authored Apr 1, 2024
1 parent 22da627 commit 151f353
Show file tree
Hide file tree
Showing 4 changed files with 242 additions and 139 deletions.
2 changes: 1 addition & 1 deletion web-common/src/features/dashboards/pivot/PivotDrag.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
</div>
</button>

<div class="w-full h-fit overflow-scroll px-[2px] pb-2">
<div class="w-full h-fit overflow-y-auto overflow-x-hidden px-[2px] pb-2">
{#if !collapsed}
{#if items.length}
<DragList {items} zone={title} />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<style lang="postcss">
.portal-item {
@apply shadow-lg shadow-slate-300;
@apply z-10;
@apply z-50;
@apply absolute pointer-events-none;
}
</style>
Loading

1 comment on commit 151f353

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.