Skip to content

Commit 8ec09b3

Browse files
apply bold font family to the home page
1 parent cfbdd3c commit 8ec09b3

File tree

7 files changed

+20
-9
lines changed

7 files changed

+20
-9
lines changed

src/components/build-with-friends/build-with-friends.module.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
}
55

66
.heading {
7+
font-family: var(--font-primary-bold);
78
font-size: var(--font-size-6);
8-
font-weight: var(--font-weight-9);
99
}
1010

1111
.subHeading {
@@ -32,7 +32,6 @@
3232

3333
.icon span {
3434
vertical-align: middle;
35-
font-weight: var(--font-weight-9);
3635
display: inline-block;
3736
}
3837

src/components/capabilities/capabilities.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
}
1010

1111
.heading {
12+
font-family: var(--font-primary-bold);
1213
font-size: var(--font-size-6);
1314
}
1415

src/components/get-started/get-started.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
}
77

88
.heading {
9+
font-family: var(--font-primary-bold);
910
font-size: var(--font-size-5);
10-
font-weight: var(--font-weight-9);
1111
}
1212

1313
.snippet {

src/components/hero-banner/hero-banner.module.css

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,14 @@
55
}
66

77
.heading {
8-
font-size: var(--font-size-7);
9-
font-weight: var(--font-weight-7);
8+
font-family: var(--font-primary-bold);
9+
font-size: var(--font-size-6);
1010
margin-block-start: 0;
1111
margin-block-end: 0;
1212
}
1313

1414
.headingEmphasis {
15-
font-size: var(--font-size-7);
16-
font-weight: var(--font-weight-7);
15+
font-size: var(--font-size-6);
1716
font-style: italic;
1817
}
1918

@@ -104,6 +103,11 @@
104103
}
105104

106105
@media (min-width: 768px) {
106+
.heading,
107+
.headingEmphasis {
108+
font-size: var(--font-size-7);
109+
}
110+
107111
.buttonBlitz,
108112
.buttonStarted {
109113
width: 45%;

src/components/run-anywhere/run-anywhere.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
}
66

77
.heading {
8+
font-family: var(--font-primary-bold);
89
font-size: var(--font-size-5);
9-
font-weight: var(--font-weight-9);
1010
margin: 0;
1111
padding: var(--size-fluid-1) 0;
1212
text-align: center;

src/components/why-greenwood/why-greenwood.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
}
88

99
.heading {
10+
font-family: var(--font-primary-bold);
1011
font-size: var(--font-size-6);
11-
font-weight: var(--font-weight-9);
1212
font-style: italic;
1313
}
1414

src/styles/home.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,13 @@ app-hero-banner {
1616
}
1717

1818
@media (min-width: 1024px) {
19+
app-hero-banner,
20+
app-latest-post {
21+
width: 80%;
22+
}
23+
}
24+
25+
@media (min-width: 1440px) {
1926
app-hero-banner,
2027
app-latest-post {
2128
width: 70%;

0 commit comments

Comments
 (0)