Skip to content

Commit d78e1f2

Browse files
111 update the light blue sections top and bottom padding (#117)
1 parent c54f7df commit d78e1f2

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

sections/logo-section/index.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,13 @@ import { TABLET_LARGE_SIZE, MOBILE_SIZE } from 'styles/constants'
1010
const { h2 } = Heading.VARIANT
1111

1212
const StyledSection = styled.section`
13-
padding: 80px 0;
13+
padding: 140px 0;
1414
background: #e8edf4;
1515
16+
@media only screen and (max-width: ${TABLET_LARGE_SIZE}) {
17+
padding: 80px 0;
18+
}
19+
1620
@media only screen and (max-width: ${MOBILE_SIZE}) {
1721
padding: 64px 0px;
1822
}

styles/Home.module.css

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ a.heroLink {
233233

234234
/* About styles */
235235
.about {
236-
padding: 100px 0px;
236+
padding: 140px 0px;
237237
}
238238
.about .flexSection {
239239
flex-direction: row;
@@ -255,6 +255,9 @@ a.heroLink {
255255
}
256256

257257
@media only screen and (max-width: 1023px) {
258+
.about {
259+
padding: 120px 0px;
260+
}
258261
.about .flexSection {
259262
flex-direction: column;
260263
align-items: center;
@@ -270,6 +273,9 @@ a.heroLink {
270273
}
271274

272275
@media only screen and (max-width: 449px) {
276+
.about {
277+
padding: 84px 0px;
278+
}
273279
.about .aboutDescription {
274280
font-size: 1rem;
275281
line-height: 1.625rem;

0 commit comments

Comments
 (0)