diff --git a/src/components/about/sections/AboutTheTeamSection/AboutTheTeamSection.styled.tsx b/src/components/about/sections/AboutTheTeamSection/AboutTheTeamSection.styled.tsx index b468fbcc7..eb92beca6 100644 --- a/src/components/about/sections/AboutTheTeamSection/AboutTheTeamSection.styled.tsx +++ b/src/components/about/sections/AboutTheTeamSection/AboutTheTeamSection.styled.tsx @@ -1,10 +1,15 @@ +import { Box } from '@mui/material' import { styled } from '@mui/material/styles' -import { Typography } from '@mui/material' import theme from 'common/theme' -export const DiscordTeamImage = styled(Typography)(() => ({ +export const DiscordTeamImage = styled(Box)(() => ({ marginTop: theme.spacing(8), display: 'flex', justifyContent: 'center', + + '& img': { + width: '100%', + height: 'auto', + }, }))