Initial commit

This commit is contained in:
2026-06-05 20:53:53 -05:00
commit f9a59e9a66
99 changed files with 15897 additions and 0 deletions

View File

@@ -0,0 +1,58 @@
.list {
display: flex;
flex-direction: column;
}
.row {
display: flex;
align-items: center;
gap: 10px;
padding: 6px 12px;
background: none;
border: none;
border-bottom: 1px solid var(--border);
text-align: left;
cursor: pointer;
transition: background 0.1s;
}
.row:hover {
background: var(--bg-hover);
}
.id {
font-family: 'JetBrains Mono', monospace;
font-size: 11px;
color: var(--text-muted);
min-width: 48px;
}
.name {
font-size: 13px;
color: var(--text-primary);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.loadMore {
padding: 10px;
background: none;
border: none;
border-top: 1px solid var(--border);
color: var(--accent-gold);
font-size: 13px;
cursor: pointer;
}
.loadMore:hover {
background: var(--bg-hover);
}
.empty {
padding: 20px;
color: var(--text-muted);
font-size: 13px;
font-style: italic;
line-height: 1.6;
}