diff options
author | 2024-02-10 11:14:02 +0800 | |
---|---|---|
committer | 2024-02-09 19:37:10 -0800 | |
commit | 2221fd408d3f7941c67653bc5afa753dbcdadb9b (patch) | |
tree | 09a2a728b51ba5bbe9e37b86f1a71d2b503259c3 /internal/ui/static/css/common.css | |
parent | ea58bac5489cd71f898312132f6e8d7b42cb4d33 (diff) | |
download | v2-2221fd408d3f7941c67653bc5afa753dbcdadb9b.tar.gz v2-2221fd408d3f7941c67653bc5afa753dbcdadb9b.tar.zst v2-2221fd408d3f7941c67653bc5afa753dbcdadb9b.zip |
fix the page-button hover style not show
Diffstat (limited to 'internal/ui/static/css/common.css')
-rw-r--r-- | internal/ui/static/css/common.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/ui/static/css/common.css b/internal/ui/static/css/common.css index 0a3e4ef4..743d5a25 100644 --- a/internal/ui/static/css/common.css +++ b/internal/ui/static/css/common.css @@ -191,7 +191,7 @@ a:hover { font-size: 1rem; cursor: pointer; - &:is(hover, :focus) { + &:is(:hover, :focus) { color: var(--link-hover-color); } } |