- Remove .tag-tier-* classes (sizing now inline)
- Update .tag-cloud to center-justify for natural cloud layout
- Add opacity transition to .tag-cloud-link
- Remove hardcoded font-size from .tag-cloud-link
.tag-cloud {
display: flex;
flex-wrap: wrap;
- gap: 0.5rem;
+ justify-content: center;
+ gap: 0.75rem;
align-items: baseline;
}
border: 1px solid var(--border);
border-radius: 0.25rem;
font-family: var(--font-mono, 'JetBrains Mono', monospace);
- font-size: 0.75rem;
color: var(--text-dim);
text-decoration: none;
- transition: border-color 150ms ease-out, color 150ms ease-out, background-color 150ms ease-out;
+ transition: border-color 150ms ease-out, color 150ms ease-out, background-color 150ms ease-out, opacity 150ms ease-out;
white-space: nowrap;
line-height: 1.4;
}
border-radius: 0.25rem;
}
- .tag-tier-low {
- font-size: 0.75rem;
- opacity: 0.75;
- }
-
- .tag-tier-medium {
- font-size: 0.875rem;
- opacity: 0.88;
- }
-
- .tag-tier-high {
- font-size: 1rem;
- opacity: 1;
- border-color: rgba(var(--accent-rgb), 0.3);
- color: var(--text);
- }
-
.tag-cloud-count {
display: inline-flex;
align-items: center;