Skip to content

Commit

Permalink
fix: fixing header carousel responsive
Browse files Browse the repository at this point in the history
  • Loading branch information
felipebrsk committed Sep 2, 2024
1 parent 5dac0b9 commit 27736c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Header/modules/HeaderCarousel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function HeaderCarousel(props: HeaderCarouselProps) {
{related.short_description}
</Typography>
<Typography className="mb-2">Available on:</Typography>
<Box className="flex md:justify-end justify-center gap-2 mb-4">
<Box className="flex md:justify-end justify-center gap-2 mb-4 sm:flex-row flex-col sm:px-0 px-8">
{related.platforms.map(({ id, name }) => (
<Box
component="span"
Expand All @@ -63,7 +63,7 @@ function HeaderCarousel(props: HeaderCarouselProps) {
</Box>
))}
</Box>
<Box className="flex flex-wrap md:justify-end justify-center gap-2">
<Box className="flex flex-wrap md:justify-end justify-center gap-2 sm:flex-row flex-col sm:px-0 px-8">
{related.tags.map(({ id, name }) => (
<Box
component="span"
Expand Down

0 comments on commit 27736c3

Please sign in to comment.