mirror of
https://github.com/Wonderfall/hugo-WonderMod.git
synced 2024-11-26 04:21:38 +01:00
87fbe01124
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.
19 lines
322 B
CSS
19 lines
322 B
CSS
.terms-tags li {
|
|
display: inline-block;
|
|
margin: 10px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.terms-tags a {
|
|
display: block;
|
|
padding: 3px 10px;
|
|
background: var(--tertiary);
|
|
border-radius: 6px;
|
|
transition: transform .1s;
|
|
}
|
|
|
|
.terms-tags a:active {
|
|
background: var(--tertiary);
|
|
transform: scale(.96);
|
|
}
|