getting closer to full port of web app starter

This commit is contained in:
udo
2026-04-19 19:44:18 +00:00
parent d1167aec3b
commit af642c8167
131 changed files with 900 additions and 80 deletions
+21 -11
View File
@@ -431,32 +431,42 @@ details pre {
}
#search-results {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
gap: 4px;
display: flex;
flex-direction: column;
gap: 2px;
}
#search-results .no-results {
grid-column: 1 / -1;
color: var(--text-dim);
padding: 12px 0;
}
.search-hit {
display: flex;
flex-direction: column;
gap: 3px;
align-items: baseline;
gap: 10px;
padding: 5px 12px;
border-radius: 6px;
transition: background 120ms var(--ease);
}
.search-hit:hover {
background: var(--bg-surface-hover);
}
.search-hit a {
flex-shrink: 0;
font-family: var(--font-mono);
font-size: 0.92rem;
}
.search-snippet {
font-size: 0.75rem;
color: var(--text-dim);
font-family: var(--font-mono);
padding: 0 12px 6px;
line-height: 1.4;
font-size: 0.78rem;
color: var(--text-muted);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
min-width: 0;
}
/* ── Scrollbar ── */