Skip to content

Commit

Permalink
Fix Tabs in Rows (#9836)
Browse files Browse the repository at this point in the history
* changes

* add changeset

* add changeset

---------

Co-authored-by: Ali Abid <[email protected]>
Co-authored-by: gradio-pr-bot <[email protected]>
Co-authored-by: Freddy Boulton <[email protected]>
  • Loading branch information
4 people authored Oct 25, 2024
1 parent 8f40bd2 commit a4e70f3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
6 changes: 6 additions & 0 deletions .changeset/cute-goats-clap.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@gradio/tabs": patch
"gradio": patch
---

fix:Fix Tabs in Rows
14 changes: 8 additions & 6 deletions js/tabs/shared/Tabs.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@
on:click={handle_outside_click}
/>

{#if has_tabs}
<div class="tabs {elem_classes.join(' ')}" class:hide={!visible} id={elem_id}>
<div class="tabs {elem_classes.join(' ')}" class:hide={!visible} id={elem_id}>
{#if has_tabs}
<div class="tab-wrapper">
<div class="tab-container visually-hidden" aria-hidden="true">
{#each tabs as t, i (t.id)}
Expand Down Expand Up @@ -225,14 +225,16 @@
</div>
</span>
</div>
</div>
{/if}

<slot />
{/if}
<slot />
</div>

<style>
.tabs {
position: relative;
display: flex;
flex-direction: column;
gap: var(--layout-gap);
}
.hide {
Expand Down

0 comments on commit a4e70f3

Please sign in to comment.