Skip to content

Commit

Permalink
Fix footer responsiveness
Browse files Browse the repository at this point in the history
  • Loading branch information
Ajanth Uthayakumaran authored and Ajanth Uthayakumaran committed Sep 18, 2022
1 parent a6f70ca commit 21cbd49
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/components/Footer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ export default function Footer() {
maxWidth="2000px"
>
<Stack spacing={{ base: '4', md: '5' }}>
<Stack justify="space-between" direction="row" align="center">
<Stack
justify="space-between"
align="center"
direction={['column', 'column', 'row', 'row']}
>
<Box>
<Image
src={'https://www.chingu.io/logo-with-text-192.png'}
Expand Down Expand Up @@ -60,7 +64,11 @@ export default function Footer() {
/>
</ButtonGroup>
</Stack>
<Text fontSize="sm" color="subtle">
<Text
fontSize="sm"
color="subtle"
textAlign={['center', 'center', 'left', 'left']}
>
Made with ❤ from a Chingu cohort.
</Text>
</Stack>
Expand Down

0 comments on commit 21cbd49

Please sign in to comment.