From 4b7922dee498fb4b447a3d68e3f33afe056ba9cd Mon Sep 17 00:00:00 2001 From: Lakshmi Shree A Date: Mon, 18 Mar 2024 22:21:25 +0530 Subject: [PATCH] feat: Add hover effect to footer anchor tags (#135) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The anchor tags in footer get underlined when hovered. ![Screenshot 2024-02-20 191150](https://github.com/jenkins-infra/jenkins-io-components/assets/117621286/574a0c90-a80e-4b22-8657-f0c47611e1de) --------- Co-authored-by: Hervé Le Meur <91831478+lemeurherve@users.noreply.github.com> --- src/jio-footer.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/jio-footer.css b/src/jio-footer.css index dcc227b..47bb286 100644 --- a/src/jio-footer.css +++ b/src/jio-footer.css @@ -44,6 +44,10 @@ a { text-underline-offset: 2px; } +a:hover { + text-decoration: underline; +} + .area { display: inline-block; font-size: 0.85rem;