fix(wordmark): 🐛 wordmark should resize responsively

This commit is contained in:
alistair3149 2024-06-24 17:12:57 -04:00
parent b1c30ef1c1
commit 7133648fe0
No known key found for this signature in database

View file

@ -4,17 +4,22 @@
line-height: 1;
color: var( --color-base--emphasized );
@media ( min-width: @min-width-breakpoint-tablet ) {
font-size: 2rem;
white-space: nowrap;
}
img& {
width: 100%;
height: 1.5rem;
margin: 0.25rem 0;
height: 1rem;
margin: 0.125rem 0;
object-fit: contain;
object-position: left center;
filter: var( --filter-invert );
}
@media ( min-width: @min-width-breakpoint-tablet ) {
font-size: 2rem;
white-space: nowrap;
img& {
height: 1.5rem;
margin: 0.25rem 0;
}
}
}