fix(css): 调整英文状态下.stat-key的字体大小

- 针对[data-lang="en"]选择器下的.stat-key元素
- 将字体大小从0.6rem改为6px
- 使用!important确保样式优先级
This commit is contained in:
hehh
2025-11-25 21:52:51 +08:00
parent b606b54d9b
commit 20b46b9fd2

View File

@@ -1907,8 +1907,8 @@ body {
margin-bottom: 3px; margin-bottom: 3px;
} }
.stat-key { [data-lang="en"] .stat-key {
font-size: 0.6rem; font-size: 6px !important;
} }
} }