This is an automated email from the ASF dual-hosted git repository. shuai pushed a commit to branch feat/1.3.1/ui in repository https://gitbox.apache.org/repos/asf/incubator-answer.git
commit 39ba30f6365fd3b15f7bdb426ddcf33a79941e1a Author: shuai <[email protected]> AuthorDate: Thu Apr 18 17:13:11 2024 +0800 fix: sidenav nav-link remove box-shadow --- ui/src/components/SideNav/index.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ui/src/components/SideNav/index.scss b/ui/src/components/SideNav/index.scss index 0cf6201b..1fb0e7b1 100644 --- a/ui/src/components/SideNav/index.scss +++ b/ui/src/components/SideNav/index.scss @@ -33,6 +33,9 @@ .nav-link { color: var(--an-side-nav-link); } + .nav-link:focus-visible { + box-shadow: none; + } .nav-link:hover { color: var(--an-side-nav-link-hover-color); background-color: var(--bs-gray-100);
