Add label-like css over dealer name

This commit is contained in:
2026-02-16 12:21:15 -05:00
parent d4634ec3cb
commit 3b713ba546
2 changed files with 84 additions and 7 deletions

View File

@@ -365,15 +365,24 @@ a:visited {
.card-meta {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 6px;
font-size: 13px;
margin-bottom: 12px;
}
.dealer-name {
color: var(--text-secondary);
font-weight: 500;
font-size: 13px;
display: inline-block;
width: fit-content;
max-width: 100%;
font-weight: 600;
font-size: 9px;
padding: 2px 6px;
border-radius: 4px;
border: 2px solid currentColor;
background-color: transparent;
transition: all 0.2s ease;
letter-spacing: 0.3px;
}
.card-details {
@@ -482,4 +491,4 @@ mark {
.icon-button:disabled:hover {
background-color: var(--bg-input);
border-color: var(--border-color-light);
}
}