Files
Seewo-HugoAura/src/aura/ui/pages/headerIcon/headerIcon.css
Minoricew b8f27d9f7c [ Feat / 🛠️ Fix] Auto hide desktopAssistant & Fix #26
1. [/] 修改了 Header Icon 的隐藏方式, 尝试修复 #26
2. [+] 现在可以隐藏管家助手 (桌面右下角小窗) 了
3. [⇡] Bump version to v0.1.1-beta
2025-06-20 00:45:11 +08:00

28 lines
411 B
CSS
Executable File

.aura-header-icon {
float: right;
height: 40px;
-webkit-app-region: no-drag;
position: relative;
transition: opacity 0.25s;
}
#root.aura-header-icon-hidden .aura-header-icon {
display: none;
}
.aura-header-icon:hover {
opacity: 0.75;
}
.aura-header-icon:active {
opacity: 0.375;
}
.aura-header-icon img {
width: 20px;
height: 20px;
margin: 10px 0 8px 8px;
vertical-align: middle;
}