Skip to content

Commit c2e5cbd

Browse files
authored
282 Engineers who built section: reduce spacing between heading and list on mobile (#285)
1 parent fd1fe17 commit c2e5cbd

File tree

1 file changed

+6
-2
lines changed
  • sections/engineers-who-joined-section

1 file changed

+6
-2
lines changed

sections/engineers-who-joined-section/index.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import BurndownChart from 'public/burndown-chart.svg'
88
import HealthcareSecurity from 'public/healthcare-security.svg'
99
import NegativeEmissions from 'public/negative-emissions.svg'
1010
import TopShot from 'public/top-shot.svg'
11-
import { TABLET_LARGE_SIZE } from 'styles/constants'
11+
import { TABLET_SMALL_SIZE, TABLET_LARGE_SIZE } from 'styles/constants'
1212

1313
import { SectionHeading } from '../../components/heading'
1414
import SectionHeadingContainer from '../../components/section-heading-container'
@@ -30,8 +30,12 @@ const Projects = styled.ul`
3030
flex-direction: row;
3131
justify-content: space-around;
3232
flex-wrap: wrap;
33-
margin-top: 5.75rem;
33+
margin-top: 0.75rem;
3434
list-style-type: none;
35+
36+
@media only screen and (min-width: ${TABLET_SMALL_SIZE}) {
37+
margin-top: 5.75rem;
38+
}
3539
`
3640

3741
const Project = styled.li`

0 commit comments

Comments
 (0)