Skip to content

Commit

Permalink
chore(weave): Fixes tab overflow (#3022)
Browse files Browse the repository at this point in the history
* init

* init
  • Loading branch information
tssweeney authored Nov 19, 2024
1 parent 925494e commit 35aeea4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -330,12 +330,12 @@ const SimpleTabView: FC<{
style={{margin: '12px 16px 0 16px'}}
value={props.tabs[props.tabValue].label}
onValueChange={props.handleTabChange}>
<Tabs.List>
<Tabs.List style={{overflowX: 'scroll', scrollbarWidth: 'none'}}>
{props.tabs.map(tab => (
<Tabs.Trigger
key={tab.label}
value={tab.label}
className="h-[30px] text-sm">
className="h-[30px] whitespace-nowrap text-sm">
{tab.label}
</Tabs.Trigger>
))}
Expand Down

0 comments on commit 35aeea4

Please sign in to comment.