fix(export): tighten session export tab width

This commit is contained in:
aits2026
2026-03-10 14:27:24 +08:00
parent ee4d1f5689
commit f53de9fe0b
2 changed files with 27 additions and 24 deletions

View File

@@ -94,33 +94,33 @@
border: 1px solid var(--border-color);
border-radius: 20px;
overflow-y: auto;
}
.tab-btn {
display: flex;
align-items: center;
gap: 6px;
width: 100%;
justify-content: flex-start;
padding: 11px 14px;
border: none;
border-radius: 12px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s;
background: transparent;
color: var(--text-secondary);
.tab-btn {
display: flex;
align-items: center;
gap: 6px;
width: 100%;
justify-content: flex-start;
padding: 11px 14px;
border: none;
border-radius: 12px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s;
background: transparent;
color: var(--text-secondary);
&:hover {
color: var(--text-primary);
background: var(--bg-secondary);
}
&:hover {
color: var(--text-primary);
background: var(--bg-secondary);
}
&.active {
background: var(--card-bg);
color: var(--primary);
box-shadow: var(--shadow-sm);
&.active {
background: var(--card-bg);
color: var(--primary);
box-shadow: var(--shadow-sm);
}
}
}