Skip to content

Commit ee6d6e7

Browse files
author
nvanha
committed
upload project-8-9-10, and fix style HomePage description - Footer author
1 parent 8b4b6de commit ee6d6e7

File tree

7 files changed

+46
-0
lines changed

7 files changed

+46
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,6 @@
2121
npm-debug.log*
2222
yarn-debug.log*
2323
yarn-error.log*
24+
25+
# temp direcoty
26+
/tmp

src/assets/data/projects.js

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ const pj6_image =
1212
require("./../images/projects/pj6_scroll-animation.png").default;
1313
const pj7_image =
1414
require("./../images/projects/pj7_split-landing-page.png").default;
15+
const pj8_image = require("./../images/projects/pj8_form-wave.png").default;
16+
const pj9_image = require("./../images/projects/pj9_sound-board.png").default;
17+
const pj10_image = require("./../images/projects/pj10_dad-jokes.png").default;
1518

1619
const projects = [
1720
{
@@ -56,6 +59,24 @@ const projects = [
5659
image: pj7_image,
5760
slug: "https://codepen.io/nvanha/full/PojeVGK",
5861
},
62+
{
63+
id: 8,
64+
name: "Form Input Wave",
65+
image: pj8_image,
66+
slug: "https://codepen.io/nvanha/full/VwWBaoP",
67+
},
68+
{
69+
id: 9,
70+
name: "Sound Board",
71+
image: pj9_image,
72+
slug: "https://codepen.io/nvanha/full/VwWBjrr",
73+
},
74+
{
75+
id: 10,
76+
name: "Dad Jokes",
77+
image: pj10_image,
78+
slug: "https://codepen.io/nvanha/full/RwgBRBJ",
79+
},
5980
];
6081

6182
export default projects;
80.2 KB
Loading
45.9 KB
Loading
35.9 KB
Loading

src/sass/components/_HomePage.scss

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@
4545
@include responsive_max(767px) {
4646
font-size: 3rem;
4747
}
48+
49+
@include responsive_max(575px) {
50+
font-size: 2.5rem;
51+
}
4852
}
4953

5054
h1 {
@@ -61,6 +65,11 @@
6165
@include responsive_max(767px) {
6266
font-size: 4.5rem;
6367
}
68+
69+
@include responsive_max(575px) {
70+
font-size: 3.8rem;
71+
margin-top: 1rem;
72+
}
6473
}
6574
}
6675
}

src/sass/components/_about.scss

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,10 @@
105105
@include responsive_max(767px) {
106106
width: 150px;
107107
}
108+
109+
@include responsive_max(575px) {
110+
width: 100px;
111+
}
108112
}
109113

110114
&-desc {
@@ -115,9 +119,18 @@
115119
padding-left: 3rem;
116120
}
117121

122+
@include responsive_max(575px) {
123+
padding-left: 2rem;
124+
}
125+
118126
h3 {
119127
text-transform: none;
120128

129+
@include responsive_max(575px) {
130+
font-size: 3.2rem !important;
131+
margin-bottom: 1rem !important;
132+
}
133+
121134
span {
122135
color: var(--color-yellow-pri);
123136
}

0 commit comments

Comments
 (0)