From 209a3670ce06fe6f0c3845dfd3878de41b9924f9 Mon Sep 17 00:00:00 2001 From: M Fahru Date: Mon, 7 Oct 2024 06:16:29 -0700 Subject: [PATCH] Merge pull request #20827 from overleaf/mf-bs5-previous-page-link-hover [web] Add hover effect to `.previous-page-link` class GitOrigin-RevId: ccba4cb22274695a2a3b63abcf86d7bc0c6dec61 --- .../frontend/stylesheets/bootstrap-5/components/link.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/services/web/frontend/stylesheets/bootstrap-5/components/link.scss b/services/web/frontend/stylesheets/bootstrap-5/components/link.scss index 20623cded6..0acc6554ad 100644 --- a/services/web/frontend/stylesheets/bootstrap-5/components/link.scss +++ b/services/web/frontend/stylesheets/bootstrap-5/components/link.scss @@ -7,10 +7,15 @@ &:hover { text-decoration: underline; + color: var(--green-60); } &:visited { color: var(--neutral-90); + + &:hover { + color: var(--green-60); + } } i {