Skip to content

Commit

Permalink
Feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
riverar committed Feb 22, 2024
1 parent 45cef03 commit 18dd00f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions web/features/src/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ const useStyles = makeStyles({
},
searchContainer: {
display: 'flex',
width: '100%'
flexWrap: 'wrap',
width: '100%',
...shorthands.gap('1em')
},
searchInput: {
flexGrow: 5
Expand Down Expand Up @@ -238,7 +240,7 @@ function App() {
)
}
/>
<Dropdown className={styles.searchBranch} value={branch} onOptionSelect={onBranchSelected}>
<Dropdown size='large' className={styles.searchBranch} value={branch} onOptionSelect={onBranchSelected}>
{
branches.map((branch) => (
<Option key={branch}>
Expand Down

0 comments on commit 18dd00f

Please sign in to comment.