mirror of
https://github.com/adityatelange/hugo-PaperMod.git
synced 2025-05-28 05:34:13 -04: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:
parent
537ec0038f
commit
87fbe01124
12 changed files with 164 additions and 164 deletions
|
@ -1,7 +1,7 @@
|
|||
.buttons,
|
||||
.main .profile {
|
||||
display: flex;
|
||||
justify-content: center
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.main .profile {
|
||||
|
@ -10,23 +10,23 @@
|
|||
right: 0;
|
||||
align-items: center;
|
||||
height: 80%;
|
||||
text-align: center
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.profile .profile_inner h1 {
|
||||
padding: 12px 0
|
||||
padding: 12px 0;
|
||||
}
|
||||
|
||||
.profile img {
|
||||
display: inline-table;
|
||||
border-radius: 50%;
|
||||
pointer-events: none
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.buttons {
|
||||
flex-wrap: wrap;
|
||||
max-width: 400px;
|
||||
margin: 0 auto
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.button {
|
||||
|
@ -34,13 +34,13 @@
|
|||
border-radius: var(--radius);
|
||||
margin: 8px;
|
||||
padding: 6px;
|
||||
transition: transform .1s
|
||||
transition: transform .1s;
|
||||
}
|
||||
|
||||
.button-inner {
|
||||
padding: 0 8px
|
||||
padding: 0 8px;
|
||||
}
|
||||
|
||||
.button:active {
|
||||
transform: scale(.96)
|
||||
transform: scale(.96);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue