优化结构

This commit is contained in:
CN-JS-HuiBai
2026-04-05 17:12:48 +08:00
parent dc865c6d9d
commit d595397f08
3 changed files with 128 additions and 23 deletions

View File

@@ -646,6 +646,34 @@ input:checked+.slider:before {
background: rgba(99, 102, 241, 0.05);
}
.btn-icon-sm {
background: var(--bg-input);
border: 1px solid var(--border-color);
border-radius: var(--radius-sm);
width: 32px;
height: 32px;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
color: var(--text-muted);
cursor: pointer;
transition: all 0.2s ease;
flex-shrink: 0;
}
.btn-icon-sm:hover {
border-color: var(--border-hover);
color: var(--accent-indigo);
background: rgba(99, 102, 241, 0.05);
transform: rotate(-15deg);
}
.btn-icon-sm svg {
width: 16px;
height: 16px;
}
.chart-title {
display: flex;
align-items: center;