added style variables to reduce duplication

This commit is contained in:
Joe Arndt 2026-02-24 13:49:43 -06:00
parent a0b1ed8d07
commit 71e1566f20
6 changed files with 30 additions and 7 deletions

View file

@ -1,5 +1,17 @@
@use "variables";
.metadata-tab {
display: flex;
align-items: center;
gap: 0.5rem;
}
.tab-text {
display: none;
}
@media (min-width: variables.$mid-screen) {
.tab-text {
display: unset;
}
}