We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f18e35c commit 834e7f3Copy full SHA for 834e7f3
website/src/component/Header/index.module.less
@@ -25,6 +25,7 @@ html[data-color-mode*='dark'] .warpper {
25
.menus {
26
display: flex;
27
28
+ span,
29
a {
30
transition: all 0.3s;
31
color: var(--color-fg-default);
@@ -39,6 +40,7 @@ html[data-color-mode*='dark'] .warpper {
39
40
}
41
42
:global(.active),
43
+ span:hover,
44
a:hover {
45
background: #00000017;
46
color: #0366d6;
website/src/component/Header/index.tsx
@@ -47,9 +47,9 @@ export default function Header(props: HeaderProps) {
47
Web 组件
48
</a>
49
<NavLink to="/team">团队</NavLink>
50
- <a>
+ <span>
51
<dark-mode permanent />
52
- </a>
+ </span>
53
<a target="__blank" href="https://github.com/uiwjs/react-native-uiw">
54
<Github />
55
0 commit comments