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
This commit is contained in:
parent
4c2d4a0678
commit
58fe9c32eb
|
@ -5,10 +5,12 @@ body{
|
||||||
.para,
|
.para,
|
||||||
.small-para {
|
.small-para {
|
||||||
color: hsl(0, 0%, 0%);
|
color: hsl(0, 0%, 0%);
|
||||||
|
font-weight: 800;
|
||||||
}
|
}
|
||||||
|
|
||||||
.small-para {
|
.small-para {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
|
font-weight: 800;
|
||||||
}
|
}
|
||||||
|
|
||||||
.para {
|
.para {
|
||||||
|
@ -29,6 +31,7 @@ body{
|
||||||
|
|
||||||
.child {
|
.child {
|
||||||
color: rgb(0, 0, 0);
|
color: rgb(0, 0, 0);
|
||||||
|
font-weight: 800;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue