Skip to content

Commit

Permalink
Merge pull request #21 from binhtran432k/fix/view-hidden
Browse files Browse the repository at this point in the history
fix(view): invisible instead of hidden
  • Loading branch information
binhtran432k committed Jun 19, 2024
2 parents fc488c4 + 9e2bbeb commit de0bf93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/www/src/lib/components/View.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -109,5 +109,5 @@
</script>
<div id="view" bind:this={view} class="h-full p-2">
<div id="container" bind:this={container} class="h-full overflow-auto" class:hidden={hide} />
<div id="container" bind:this={container} class="h-full overflow-auto {hide && 'invisible'}" />
</div>

0 comments on commit de0bf93

Please sign in to comment.