Skip to content

Commit

Permalink
finally... UI that doesn't grow
Browse files Browse the repository at this point in the history
  • Loading branch information
sam9116 committed Feb 10, 2024
1 parent f1590b8 commit fd84421
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function App() {
container
spacing={2}
alignItems="flex-start">
<Stack item xs={6} md={6} spacing={2}>
<Grid direction={'column'} item xs={10} md={3} spacing={2}>
<Box>
<img src={window.location.origin + '/Taver.png'} alt="Taver" />
</Box>
Expand All @@ -63,8 +63,8 @@ function App() {
</Routes>
</Router>
<ConcertList setConcerts={setConcerts} setAllConcerts={setAllConcerts} concerts={concerts}></ConcertList>
</Stack>
<Grid item xs={10} md={6} direction={'row'}>
</Grid>
<Grid item xs={10} md={5} direction={'row'}>
<SharePage concerts={concerts} userLocation={userLocation} mapStyle={mapStyle} />
</Grid>
</Grid>
Expand Down
2 changes: 1 addition & 1 deletion src/YourFavoriteSpotifyArtists.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ function YourFavoriteSpotifyArtists({ onChildClick, startDate, endDate }) {
alignItems="center"

>
<Grid xs={6} md={6} container spacing={1} direction="row" justifyContent="center">
<Grid xs={10} md={10} container spacing={1} direction="row" justifyContent="center">
{commaSeparatedfollowedArtists}
</Grid>
</Box>) : (
Expand Down

0 comments on commit fd84421

Please sign in to comment.