Files
Artificers-Scrollwork/src/components/asset/StaticBrowser.module.css
whitlocktech 285ba5b3af
Some checks failed
Build and Release / build (push) Failing after 1m37s
added updater and fixed fonts
2026-06-12 21:21:45 -05:00

59 lines
941 B
CSS

.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: 0.6875em;
color: var(--text-muted);
min-width: 48px;
}
.name {
font-size: 0.8125em;
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: 0.8125em;
cursor: pointer;
}
.loadMore:hover {
background: var(--bg-hover);
}
.empty {
padding: 20px;
color: var(--text-muted);
font-size: 0.8125em;
font-style: italic;
line-height: 1.6;
}