feat: mini vendor logos on chips

This commit is contained in:
2026-05-12 19:58:36 +03:00
parent 97b5910c3d
commit 36ec4ae0ce
2 changed files with 27 additions and 2 deletions
+18 -1
View File
@@ -270,13 +270,30 @@
.chip {
border: 1px solid #ccdbf7;
border-radius: 999px;
padding: 8px 12px;
padding: 6px 12px 6px 6px;
background: #f7faff;
color: #22427a;
font-size: 13px;
cursor: pointer;
user-select: none;
transition: .18s ease;
display: inline-flex;
align-items: center;
gap: 7px;
}
.chip-logo {
width: 22px;
height: 22px;
object-fit: contain;
border-radius: 4px;
background: #fff;
flex-shrink: 0;
}
.chip.active .chip-logo {
filter: brightness(0) invert(1) opacity(.9);
}
.chip.dim .chip-logo {
opacity: .45;
}
.chip:hover {