fix social link items stacking vertically due to cascade conflict
All checks were successful
deploy / deploy (push) Successful in 1m23s

.themed-button-outline:where(a) { display: inline-block } (line 2147)
was beating .social-link-card-item { display: flex } (line 1796) —
same layer, same specificity, later wins. Used the parent selector
.social-link-card-list .social-link-card-item to give display: flex
higher specificity (2 classes vs 1) so it wins.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
jamey 2026-02-24 14:49:13 +00:00
parent dffc0eeb44
commit e7656cf0b3

View File

@ -1793,7 +1793,7 @@
gap: 0.5rem;
}
.social-link-card-item {
.social-link-card-list .social-link-card-item {
display: flex;
align-items: center;
gap: 0.5rem;