Skip to content

Commit 58fe9c3

Browse files
Added missing weight from solution.css
The solution.css has a font weight of 800 on the classes .para, small-para, .small-para, and .child that were missing from the originally assigned style.css
1 parent 4c2d4a0 commit 58fe9c3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

foundations/06-cascade-fix/style.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,12 @@ body{
55
.para,
66
.small-para {
77
color: hsl(0, 0%, 0%);
8+
font-weight: 800;
89
}
910

1011
.small-para {
1112
font-size: 14px;
13+
font-weight: 800;
1214
}
1315

1416
.para {
@@ -29,10 +31,11 @@ body{
2931

3032
.child {
3133
color: rgb(0, 0, 0);
34+
font-weight: 800;
3235
font-size: 14px;
3336
}
3437

3538
div.text {
3639
color: rgb(0, 0, 0);
3740
font-size: 22px;
38-
}
41+
}

0 commit comments

Comments
 (0)