fixing some funkiness

This commit is contained in:
Toby Brown 2024-01-27 10:18:28 +00:00
parent 827a6c2736
commit a866932b33
3 changed files with 6 additions and 5 deletions

View file

@ -16,7 +16,8 @@ export function LeftArrow() {
cursor: 'pointer',
placeItems: 'center',
display: 'flex',
mr: 2
mr: 2,
ml: 'calc(50vw - 35rem)'
}}
>
<Icon glyph="view-back" size={32} color="white" />

View file

@ -9,7 +9,7 @@ export default function Join() {
mt: '2rem',
borderRadius: 12,
overflowX: 'hidden',
height: ['', '40rem'],
height: ['', '30rem'],
paddingTop: ['2rem', 0],
display: ['grid', 'flex']
}}
@ -29,7 +29,7 @@ export default function Join() {
variant="title"
sx={{ mb: 3, fontSize: ['36px', '48px', '56px'] }}
>
There&apos;s a whole new world for you to discover.
Discover the Hack Club Slack
</Text>
<Link
href="#"
@ -51,7 +51,7 @@ export default function Join() {
src="https://cloud-j0p07nviw-hack-club-bot.vercel.app/0image.png"
sx={{
width: ['100%', '50%'],
height: ['100%', '40rem'],
height: ['100%', '30rem'],
objectFit: 'cover',
position: 'relative',
top: 0

View file

@ -15,7 +15,7 @@ export default function Quote({ text, person, age, location, img }) {
</Text>
<Flex sx={{ gap: '8px' }}>
<Image src={img} sx={{ height: 24, width: 24, borderRadius: 100 }} />
<Text as="p" variant="paragraph">
<Text as="h3" sx={{ fontWeight: 400 }}>
{person}, {age} from {location}
</Text>
</Flex>