Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
282 Engineers who built section: reduce spacing between heading and l…
…ist on mobile
  • Loading branch information
chrisnottca committed Apr 15, 2021
commit d1d1a00ebed00ab171c1b4e4e4001f443998cf20
8 changes: 6 additions & 2 deletions sections/engineers-who-joined-section/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import BurndownChart from 'public/burndown-chart.svg'
import HealthcareSecurity from 'public/healthcare-security.svg'
import NegativeEmissions from 'public/negative-emissions.svg'
import TopShot from 'public/top-shot.svg'
import { TABLET_LARGE_SIZE } from 'styles/constants'
import { TABLET_SMALL_SIZE, TABLET_LARGE_SIZE } from 'styles/constants'

import { SectionHeading } from '../../components/heading'
import SectionHeadingContainer from '../../components/section-heading-container'
Expand All @@ -30,8 +30,12 @@ const Projects = styled.ul`
flex-direction: row;
justify-content: space-around;
flex-wrap: wrap;
margin-top: 5.75rem;
margin-top: 0.75rem;
list-style-type: none;

@media only screen and (min-width: ${TABLET_SMALL_SIZE}) {
margin-top: 5.75rem;
}
`

const Project = styled.li`
Expand Down