add: (WIP) category view

Removed h1 from calculator, add preparation for category view
This commit is contained in:
Fiona Lena Urban 2025-05-22 07:47:44 +02:00
parent 50ef15c1a6
commit 0a73fcbcf5
2 changed files with 44 additions and 16 deletions

View file

@ -14,11 +14,27 @@
}
.filter-bar {
background: var(--color-lightest);
display: flex;
justify-content: flex-end;
gap: 1rem;
justify-content: space-between;
padding: var(--padding-default);
& .box {
display: flex;
flex-direction: column;
gap: .5rem;
& strong {
color: var(--color-darkest);
font-size: .8rem;
}
& > div {
background: var(--color-lightest);
display: flex;
justify-content: flex-end;
gap: .5rem;
}
}
}
.search-bar {