🐛 Fix social icons shifting on hover in Safari

Fixes #396
pull/435/head
James Panther 2023-01-09 18:26:34 +11:00
parent 0105da87cd
commit a1b11a6a04
No known key found for this signature in database
GPG Key ID: D36F789E45745D17
2 changed files with 2 additions and 0 deletions

View File

@ -20,6 +20,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### Fixed ### Fixed
- Code highlight background cut off in Google Chrome when overflowing content area ([#383](https://github.com/jpanther/congo/pull/383)) - Code highlight background cut off in Google Chrome when overflowing content area ([#383](https://github.com/jpanther/congo/pull/383))
- Social icons shift position during CSS transition when hovered in Safari ([#396](https://github.com/jpanther/congo/pull/396))
- Error when attempting to resize SVG assets in page bundles ([#427](https://github.com/jpanther/congo/pull/427)) - Error when attempting to resize SVG assets in page bundles ([#427](https://github.com/jpanther/congo/pull/427))
## [2.4.2] - 2022-11-22 ## [2.4.2] - 2022-11-22

View File

@ -4,6 +4,7 @@
{{ range $name, $url := $links }} {{ range $name, $url := $links }}
<a <a
class="px-1 transition-transform hover:scale-125 hover:text-primary-700 dark:hover:text-primary-400" class="px-1 transition-transform hover:scale-125 hover:text-primary-700 dark:hover:text-primary-400"
style="will-change:transform;"
href="{{ $url }}" href="{{ $url }}"
target="_blank" target="_blank"
aria-label="{{ $name | title }}" aria-label="{{ $name | title }}"