market/src/components/molecules/SearchPriceFilter.module.css

21 lines
295 B
CSS

.layout {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.label {
margin-bottom: calc(var(--spacer) / 2);
}
@media (max-width: 55rem) {
.layout {
flex-direction: row;
}
.label {
flex-basis: auto;
width: calc(50% - var(--spacer) / 2);
}
}