We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e209070 + fb4169e commit db30093Copy full SHA for db30093
2 files changed
src/BloomBrowserUI/react_components/TopBar/TopBar.tsx
@@ -118,10 +118,14 @@ export const TopBar: React.FunctionComponent = () => {
118
padding-top: 2px;
119
display: flex;
120
align-items: flex-start;
121
- gap: 100px;
122
`}
123
>
124
<BloomTabs tabStates={tabStates} selectTab={handleSelectTab} />
+ <div
125
+ css={css`
126
+ flex: 0 1 100px;
127
+ `}
128
+ />
129
<TopBarControls activeTab={activeTab} />
130
<TopBarContextMenu targetRef={topBarRef} />
131
</div>
src/BloomBrowserUI/react_components/TopBar/TopBarControls.tsx
@@ -11,7 +11,7 @@ export const TopBarControls: React.FunctionComponent<{
11
return (
12
<div
13
css={css`
14
- flex: 1;
+ flex: 1 0 auto;
15
16
justify-content: space-between;
17
0 commit comments