From d66a4655d17d2ee7ef28f034f97d260356846d42 Mon Sep 17 00:00:00 2001 From: Ricky Syamsi Date: Tue, 15 Oct 2019 09:16:40 +0000 Subject: [PATCH] fix(learn): Add tab text hover color on mobile (#37262) * fix: add tab text hover color on mobile --- client/src/templates/Challenges/classic/classic.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client/src/templates/Challenges/classic/classic.css b/client/src/templates/Challenges/classic/classic.css index 7815f3549d..9476078fe0 100644 --- a/client/src/templates/Challenges/classic/classic.css +++ b/client/src/templates/Challenges/classic/classic.css @@ -27,6 +27,10 @@ font-size: 0.8em; } +#challenge-page-tabs .nav-tabs > li > a:hover { + color: var(--gray-85); +} + #challenge-page-tabs .tab-content { height: calc(100vh - var(--header-height, 0px) - 69px); overflow-y: auto;