Add missing semicolons in CSS files (#408)

Many of the CSS files had no semicolon after the last rule in a block,
which is proper syntax, but it's annoying when adding more rules. Since
omitting the semicolons doesn't really have a benefit, I've decided to
add them.
This commit is contained in:
Kian Kasad 2021-06-11 00:59:56 -07:00 committed by GitHub
parent 537ec0038f
commit 87fbe01124
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 164 additions and 164 deletions

View file

@ -7,5 +7,5 @@
justify-content: center;
height: 80%;
font-size: 160px;
font-weight: 700
font-weight: 700;
}