Skip to content
This repository was archived by the owner on Apr 19, 2021. It is now read-only.

Commit 7aca317

Browse files
committed
add spacing below the pricing links section.
1 parent c41cbcd commit 7aca317

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

src/components/pricing/PricingLinks.tsx

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
import React from 'react'
22

33
import styled from '@emotion/styled'
4-
import { borders } from '../../styles/variables'
4+
import { borders, sizes } from '../../styles/variables'
55

66
const StyledPricingLinks = styled.section`
77
max-width: 850px;
88
display: flex;
99
align-items: center;
1010
margin: 0 auto;
11+
12+
@media(max-width: ${sizes.breakpoints.md}) {
13+
padding-bottom: 8rem;
14+
}
1115
1216
@media(max-width: 720px) {
1317
flex-direction: column;
@@ -63,9 +67,9 @@ const PricingLinks = ({ img, title, text, links }: PricingLinksProps) => (
6367
<p>
6468
{text}
6569
</p>
66-
<span className="btn-wrapper">
67-
{links}
68-
</span>
70+
<span className="btn-wrapper">
71+
{links}
72+
</span>
6973
</div>
7074
</StyledPricingLinks>
7175
</div>

0 commit comments

Comments
 (0)