minimal
minimal copied to clipboard
How to stop changing of linked text size upon hovering?
Hovering over hyperlinks is distorting the texts after it.
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