FEAT: add filters getters on FilterMenu class

This commit is contained in:
Joaquin Pereyra 2025-07-02 21:49:46 -03:00
parent 77edc73b2c
commit 0ad4c8d71e
5 changed files with 122 additions and 51 deletions

View file

@ -15,29 +15,33 @@
font-family: @font-body;
font-weight: bold;
color: light-dark(@dark-blue, @golden);
}
}
}
.filter-buttons {
display: flex;
flex-wrap: wrap;
gap: 5px;
button {
background: light-dark(@light-black, @dark-blue);
color: light-dark(@dark-blue, @golden);
outline: none;
box-shadow: none;
border: 1px solid light-dark(@dark-blue, @dark-blue);
&:hover {
background: light-dark(transparent, @golden);
color: light-dark(@dark-blue, @dark-blue);
}
&.active {
animation: glow 0.75s infinite alternate;
font-size: var(--font-size-12);
}
.filter-buttons {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
gap: 5px;
button {
background: light-dark(@light-black, @dark-blue);
color: light-dark(@dark-blue, @golden);
outline: none;
box-shadow: none;
border: 1px solid light-dark(@dark-blue, @dark-blue);
padding: 0 0.2rem;
font-size: var(--font-size-12);
&:hover {
background: light-dark(transparent, @golden);
color: light-dark(@dark-blue, @dark-blue);
}
&.active {
animation: glow 0.75s infinite alternate;
}
}
}
}
}