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:
parent
537ec0038f
commit
87fbe01124
12 changed files with 164 additions and 164 deletions
|
|
@ -41,5 +41,5 @@
|
|||
|
||||
#searchResults .focus {
|
||||
transform: scale(.98);
|
||||
border: 2px solid var(--tertiary)
|
||||
border: 2px solid var(--tertiary);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue