minimal icon indicating copy to clipboard operation
minimal copied to clipboard

How to stop changing of linked text size upon hovering?

Open vermaph opened this issue 7 years ago • 1 comments

Hovering over hyperlinks is distorting the texts after it.

vermaph avatar May 19 '18 22:05 vermaph

You can try changing the link hover behavior in a custom CSS as follows: Create a file called /assets/css/style.scss in your site root, then add the following to change hover style to underline and unset the bold:

---
---

@import "{{ site.theme }}";
a:hover, a:focus {
  text-decoration: underline;
  font-weight:unset;
}

https://github.com/pages-themes/dinky#stylesheet

contactrika avatar Apr 24 '21 08:04 contactrika