From 0813bf287e544ebe9d95e0e43de70d18140b516b Mon Sep 17 00:00:00 2001 From: Miodec Date: Thu, 25 Aug 2022 12:18:41 +0200 Subject: [PATCH] highlighting level on hover --- frontend/src/styles/nav.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/styles/nav.scss b/frontend/src/styles/nav.scss index 15c224e33..517075f7c 100644 --- a/frontend/src/styles/nav.scss +++ b/frontend/src/styles/nav.scss @@ -38,6 +38,7 @@ } .level { + transition: 0.125s; width: max-content; font-size: 0.65rem; line-height: 1rem; @@ -89,6 +90,9 @@ } } } + &:hover .level { + background-color: var(--text-color); + } } }