Skip to content

Commit 5f27884

Browse files
Card and ThreeColumn container adjustments
1 parent ed7aaa7 commit 5f27884

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

pages/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default function Home() {
2121

2222
<TwoColumn
2323
title="Let's grow together."
24-
image="/images/home-two-column-image.jpg"
24+
image="/images/join-us.jpg"
2525
content="The Web Dev Path is a team of professional developers project that aims to provide a comprehensive path for people who seek to begin their web development journey."
2626
link="/about-us"
2727
/>
@@ -39,9 +39,9 @@ export default function Home() {
3939
<ThreeColumn
4040
titles={['Join us', 'Volunteer', 'Become a mentor']}
4141
images={[
42-
'/images/home-two-column-image.jpg',
43-
'/images/home-two-column-image.jpg',
44-
'/images/home-two-column-image.jpg',
42+
'/images/join-us.jpg',
43+
'/images/volunteer.jpg',
44+
'/images/mentor.jpg',
4545
]}
4646
altTags={['Join us', 'Volunteer', 'Become a mentor']}
4747
content={[
File renamed without changes.

public/images/mentor.jpg

47.4 KB
Loading

public/images/volunteer.jpg

52.9 KB
Loading

styles/Card.module.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
.card {
55
margin: 1.5rem;
66
padding: 1.5rem;
7-
border-radius: 1rem;
7+
border-radius: 1.5rem;
88
box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
9-
min-width: 30%;
9+
min-width: 28%;
1010
@include desktop {
11-
flex-basis: 30%;
11+
flex-basis: 28%;
1212
margin-bottom: 0;
1313
}
1414

styles/ThreeColumn.module.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33

44
.container {
55
background-color: $white;
6+
max-width: $large-desktop-breakpoint;
7+
margin: 0 auto;
68

79
.inner__content {
810
margin: 0 auto;
9-
max-width: $large-desktop-breakpoint;
10-
padding-bottom: 2.5rem;
11-
margin-bottom: 5rem;
11+
padding-bottom: 12rem;
1212
display: flex;
1313
flex-wrap: wrap;
1414
justify-content: center;

0 commit comments

Comments
 (0)