Vibe link and card meta data fixes

This commit is contained in:
2026-06-25 19:27:58 -04:00
parent 73ae3eac53
commit 0005fff01d
8 changed files with 143 additions and 28 deletions
+56
View File
@@ -74,6 +74,62 @@
font-size: 0.9rem;
}
.category-divider {
width: 1px;
height: 1.5rem;
background: var(--border);
margin: 0 0.6rem;
align-self: center;
opacity: 0.6;
}
.tab.link-toggle {
border-style: dashed;
gap: 0.6rem;
user-select: none;
padding-right: 0.8rem;
margin-left: 0.2rem;
}
.tab.link-toggle.active {
border-style: solid;
background: rgba(108, 99, 255, 0.1);
border-color: var(--accent);
color: var(--text-primary);
}
.toggle-switch {
width: 28px;
height: 16px;
background: var(--bg-hover);
border-radius: 10px;
position: relative;
transition: all 0.2s;
border: 1px solid var(--border);
flex-shrink: 0;
}
.toggle-switch.on {
background: var(--accent);
border-color: rgba(255, 255, 255, 0.2);
}
.toggle-switch::after {
content: '';
position: absolute;
width: 10px;
height: 10px;
background: white;
border-radius: 50%;
top: 2px;
left: 2px;
transition: transform 0.2s;
}
.toggle-switch.on::after {
transform: translateX(12px);
}
/* ── Filter Bar ── */
.filter-bar {
display: flex;