hensei-web/components/about/UpdatesPage/index.module.scss
Justin Edmund cfa78dccc3
Add year selector to updates page (#410)
The Updates page was getting really long which meant a humongous
request. This splits it up by year.
2024-03-11 07:21:39 -07:00

31 lines
508 B
SCSS

.updates {
.top {
display: flex;
flex-direction: column;
gap: $unit;
}
.yearSelector {
display: flex;
flex-direction: row;
gap: $unit-2x;
.yearButton {
background: none;
border: none;
font-size: $font-medium;
font-weight: $bold;
font-variant-numeric: oldstyle-nums;
padding: 0;
&.active {
color: var(--accent-blue);
}
&:hover {
color: var(--accent-blue);
cursor: pointer;
}
}
}
}