This commit is contained in:
2026-01-26 13:05:36 +08:00
parent 2a9cb82fef
commit 8b0e5a5642
8 changed files with 382 additions and 43 deletions

View File

@@ -274,15 +274,25 @@ onMounted(() => {
border-radius: 6px 0 0 6px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
z-index: 9999;
transition: all 0.3s;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
user-select: none;
.el-icon {
font-size: 20px;
transition: transform 0.3s;
}
&:hover {
width: 56px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
.el-icon {
transform: rotate(90deg);
}
}
&:active {
transform: translateY(-50%) scale(0.95);
}
}