Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 5 additions & 1 deletion sections/logo-section/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,13 @@ import { TABLET_LARGE_SIZE, MOBILE_SIZE } from 'styles/constants'
const { h2 } = Heading.VARIANT

const StyledSection = styled.section`
padding: 80px 0;
padding: 140px 0;
background: #e8edf4;

@media only screen and (max-width: ${TABLET_LARGE_SIZE}) {
padding: 80px 0;
}

@media only screen and (max-width: ${MOBILE_SIZE}) {
padding: 64px 0px;
}
Expand Down
8 changes: 7 additions & 1 deletion styles/Home.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ a.heroLink {

/* About styles */
.about {
padding: 100px 0px;
padding: 140px 0px;
}
.about .flexSection {
flex-direction: row;
Expand All @@ -255,6 +255,9 @@ a.heroLink {
}

@media only screen and (max-width: 1023px) {
.about {
padding: 120px 0px;
}
.about .flexSection {
flex-direction: column;
align-items: center;
Expand All @@ -270,6 +273,9 @@ a.heroLink {
}

@media only screen and (max-width: 449px) {
.about {
padding: 84px 0px;
}
.about .aboutDescription {
font-size: 1rem;
line-height: 1.625rem;
Expand Down