mirror of
https://github.com/adityatelange/hugo-PaperMod.git
synced 2023-12-21 10:22:58 +01:00
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:
@ -41,5 +41,5 @@
|
||||
|
||||
#searchResults .focus {
|
||||
transform: scale(.98);
|
||||
border: 2px solid var(--tertiary)
|
||||
border: 2px solid var(--tertiary);
|
||||
}
|
||||
|
Reference in New Issue
Block a user