Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/BloomBrowserUI/react_components/TopBar/TopBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,14 @@ export const TopBar: React.FunctionComponent = () => {
padding-top: 2px;
display: flex;
align-items: flex-start;
gap: 100px;
`}
>
<BloomTabs tabStates={tabStates} selectTab={handleSelectTab} />
<div
css={css`
flex: 0 1 100px;
`}
/>
<TopBarControls activeTab={activeTab} />
</div>
</ScopedCssBaseline>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const TopBarControls: React.FunctionComponent<{
return (
<div
css={css`
flex: 1;
flex: 1 0 auto;
Comment thread
andrew-polk marked this conversation as resolved.
display: flex;
justify-content: space-between;
padding-top: 2px;
Expand Down