From 7c864197f0474652a40d82c31f226a39681d89b6 Mon Sep 17 00:00:00 2001 From: Gabriele Musco Date: Mon, 13 Dec 2021 16:04:12 +0100 Subject: [PATCH] fix link transition --- assets/scss/style.scss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/assets/scss/style.scss b/assets/scss/style.scss index a109739..a1c14b2 100644 --- a/assets/scss/style.scss +++ b/assets/scss/style.scss @@ -22,7 +22,9 @@ $mono_font_mult: {{ .Site.Params.monoFontSizeMultiplier | default 1.0 }}; } a { - transition: all .15s ease-in-out; + transition-property: color, border-color; + transition-duration: .15s; + transition-timing-function: ease-in-out; } body, html { @@ -187,6 +189,7 @@ h1, h2, h3, h4, h5, h6 { a { color: $accent_color; {{ if not (.Site.Params.underlineTitleLinks | default false) }} + not (.Site.Params.underlineTitleLinks | default false) }} border-bottom: none; {{ end }} }