Add active state to footer's "Powered by" links

This commit is contained in:
daudix
2024-08-31 03:40:22 +03:00
parent bada5ff98f
commit a69352c8b5
2 changed files with 6 additions and 0 deletions

View File

@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Add `external` class to comment timestamp.
- Add active state to footer's "Powered by" links.
- Add hover state to slider thumb.
- Add loading animation to "Load Comments" button.
- Add zoom-on-hover to custom comment emojis.

View File

@ -117,6 +117,7 @@
}
.link {
display: inline-block;
transition: var(--transition);
box-shadow: var(--edge-highlight);
border-radius: var(--rounded-corner-small);
@ -128,5 +129,9 @@
background-color: var(--primary-color);
color: var(--contrast-color);
}
&:active {
transform: scale(var(--active));
}
}
}