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:
Jonathan R Martinez-Hernandez 2022-07-31 20:12:30 -05:00 committed by GitHub
parent 4c2d4a0678
commit 58fe9c32eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -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;
} }