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

Commit 00dd988

Browse files
committed
reduce the spacing.
1 parent 9eddf91 commit 00dd988

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/components/FeaturesSection.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,16 @@ import React from 'react'
22

33
import styled from '@emotion/styled'
44
import FeatureItem, { FeatureItemProps } from './FeatureItem'
5+
import { sizes } from '../styles/variables'
56

67
const StyledFeatures = styled.div`
78
display: flex;
89
flex-wrap: wrap;
910
justify-content: space-between;
11+
12+
@media(max-width: ${sizes.breakpoints.lg}) {
13+
margin-top: -5rem;
14+
}
1015
1116
@media(max-width: 900px) {
1217
flex-direction: column;

0 commit comments

Comments
 (0)