Add the filter checkboxes and infra for toggling them (closes #110)

This commit is contained in:
Oliver-Akins 2024-03-08 22:27:04 -07:00
parent c525c1390b
commit 609b5820ba
3 changed files with 57 additions and 0 deletions

View file

@ -64,4 +64,26 @@
text-align: center;
}
}
.filter-panel {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: repeat(6, 1fr);
gap: 8px;
label {
display: flex;
align-items: center;
gap: 4px;
&:nth-of-type(2n) {
flex-direction: row-reverse;
justify-content: right;
}
}
input[type="checkbox"] {
margin: 0;
}
}
}