More tests and WIP vibe work

This commit is contained in:
2026-07-18 15:07:21 -04:00
parent c8d10c19de
commit 6062d5b60c
25 changed files with 323 additions and 45 deletions
@@ -0,0 +1,33 @@
.card-preview-popup {
position: fixed;
z-index: 9999;
pointer-events: none;
background: var(--bg-surface);
border: 1px solid var(--border);
border-radius: var(--radius-sm);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
padding: 0.5rem;
width: 220px;
transition: opacity 0.15s ease-in-out;
}
.preview-content img {
width: 100%;
height: auto;
border-radius: 4px;
display: block;
margin-bottom: 0.5rem;
}
.preview-info {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.9rem;
color: var(--text-primary);
}
.preview-cost {
color: var(--accent);
font-weight: bold;
}