Skip to content

Commit

Permalink
Fix snapshot diff
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinpalkovic committed Jan 27, 2023
1 parent 0c27306 commit ed371b0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions code/ui/components/src/tabs/tabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,23 @@ const WrapperChildren = styled.div<{ backgroundColor: string }>(({ theme, backgr
width: '100%',
height: 40,
boxShadow: `${theme.appBorderColor} 0 -1px 0 0 inset`,
marginLeft: 3,
background: backgroundColor ?? theme.barBg,
}));

export const TabBar = styled.div({
overflow: 'hidden',

'&:first-of-type': {
marginLeft: -3,
},

whiteSpace: 'nowrap',
flexGrow: 1,
});

TabBar.displayName = 'TabBar';

export interface ContentProps {
absolute?: boolean;
bordered?: boolean;
Expand Down

0 comments on commit ed371b0

Please sign in to comment.