feat(ext/popup): empty states with glyph icons in item-list

This commit is contained in:
adlee-was-taken
2026-05-03 21:05:15 -04:00
parent 8b197a7525
commit b768f649a2
2 changed files with 47 additions and 4 deletions

View File

@@ -1608,3 +1608,30 @@ textarea {
margin-top: 8px;
background: var(--bg-input);
}
.empty-state {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 40px 20px;
text-align: center;
}
.empty-state__icon {
font-size: 28px;
color: var(--text-muted, #8b949e);
margin-bottom: 12px;
display: block;
}
.empty-state__title {
font-size: 13px;
font-weight: 600;
margin-bottom: 4px;
}
.empty-state__hint {
font-size: 11px;
color: var(--text-muted, #8b949e);
}