Skip to content

Commit a866932

Browse files
committed
fixing some funkiness
1 parent 827a6c2 commit a866932

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

components/slack/arrows.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ export function LeftArrow() {
1616
cursor: 'pointer',
1717
placeItems: 'center',
1818
display: 'flex',
19-
mr: 2
19+
mr: 2,
20+
ml: 'calc(50vw - 35rem)'
2021
}}
2122
>
2223
<Icon glyph="view-back" size={32} color="white" />

components/slack/catchall.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default function Join() {
99
mt: '2rem',
1010
borderRadius: 12,
1111
overflowX: 'hidden',
12-
height: ['', '40rem'],
12+
height: ['', '30rem'],
1313
paddingTop: ['2rem', 0],
1414
display: ['grid', 'flex']
1515
}}
@@ -29,7 +29,7 @@ export default function Join() {
2929
variant="title"
3030
sx={{ mb: 3, fontSize: ['36px', '48px', '56px'] }}
3131
>
32-
There&apos;s a whole new world for you to discover.
32+
Discover the Hack Club Slack
3333
</Text>
3434
<Link
3535
href="#"
@@ -51,7 +51,7 @@ export default function Join() {
5151
src="https://cloud-j0p07nviw-hack-club-bot.vercel.app/0image.png"
5252
sx={{
5353
width: ['100%', '50%'],
54-
height: ['100%', '40rem'],
54+
height: ['100%', '30rem'],
5555
objectFit: 'cover',
5656
position: 'relative',
5757
top: 0

components/slack/quote.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export default function Quote({ text, person, age, location, img }) {
1515
</Text>
1616
<Flex sx={{ gap: '8px' }}>
1717
<Image src={img} sx={{ height: 24, width: 24, borderRadius: 100 }} />
18-
<Text as="p" variant="paragraph">
18+
<Text as="h3" sx={{ fontWeight: 400 }}>
1919
{person}, {age} from {location}
2020
</Text>
2121
</Flex>

0 commit comments

Comments
 (0)