Skip to content

Commit

Permalink
fix(frontend): fix style panel overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fatonramadani committed Oct 11, 2023
1 parent cb2b6df commit fd5e7c3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion frontend/src/lib/components/apps/editor/AppEditor.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,12 @@
<SplitPanesWrapper>
<Splitpanes class="max-w-full overflow-hidden">
<Pane bind:size={leftPanelSize} minSize={5} maxSize={33}>
<div class="w-full h-full relative">
<div
class={twMerge(
'w-full h-full relative',
$secondaryMenuLeftStore.isOpen ? 'overflow-hidden' : ''
)}
>
<SecondaryMenu right={false} />
<ContextPanel />
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,12 @@
</Tooltip>
</div>
<div class="relative">
<ClearableInput bind:value={value.class} />
<ClearableInput
bind:value={value.class}
type="textarea"
wrapperClass="h-full"
inputClass="h-full !text-xs !rounded-none !p-2 min-h-[72px]"
/>
</div>
</label>
{/if}
Expand Down

0 comments on commit fd5e7c3

Please sign in to comment.