metadata-management (#10)

Co-authored-by: Joe Arndt <jmarndt@users.noreply.github.com>
Reviewed-on: #10
This commit is contained in:
Joe 2026-02-26 18:35:32 +00:00
parent 598377d8d0
commit 284e1cbef8
49 changed files with 585 additions and 82 deletions

View file

@ -0,0 +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;
}
}