Skip to content

Commit

Permalink
imrove beer search spacing a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-catignani committed Nov 26, 2023
1 parent 4dce7d3 commit 3147340
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/features/output/Output.js
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ export const BeerModalContent = ({openBeerIdx, onClose}) => {
}

return (
<Flex justifyContent='safe center' flexWrap='wrap' gap='10'>
<Flex justifyContent='safe center' flexWrap='wrap' columnGap='5'>
<BeerSearch openBeerIdx={openBeerIdx} onClose={onClose}/>
<AddYourOwn
onClick={() => setIsInBeerUGCMode(true)}
Expand Down Expand Up @@ -295,6 +295,7 @@ export const BeerSearch = ({openBeerIdx, onClose}) => {
<Input
placeholder='Search for beer'
value={beerSearchQuery}
mb='5'
onChange={e => {
setBeerSearchQuery(e.target.value);
dispatch(searchForBeer(e.target.value));
Expand Down

0 comments on commit 3147340

Please sign in to comment.