4,554
edits
No edit summary |
No edit summary |
||
Line 1,011: | Line 1,011: | ||
/* Parent container styling */ | /* Parent container styling */ | ||
.filtered { | |||
height: 100%; | |||
position: relative; | |||
width: 100%; /* Adjust as necessary */ | |||
} | |||
.filtered .filtered-filters { | .filtered .filtered-filters { | ||
display: flex; | display: flex; | ||
flex-wrap: wrap; | flex-wrap: wrap; | ||
justify-content: space-between; | justify-content: space-between; /* Adjust as needed */ | ||
align-items: center; | align-items: center; | ||
width: 100%; /* Adjust as necessary */ | |||
width: | |||
display: none !important; | display: none !important; | ||
} | } | ||
.filtered- | .filtered-filters .filtered-value { | ||
/* Add | flex: 1 1 auto; /* Adjust to make child elements flexible */ | ||
/* Add more styles if needed */ | |||
} | } | ||
.filtered-filters .filtered-value .filtered-value-option { | .filtered-filters .filtered-value .filtered-value-option { | ||
display: block; | display: block; | ||
Line 1,065: | Line 1,068: | ||
@media (max-width: 600px) { | @media (max-width: 600px) { | ||
.filtered .filtered-filters { | .filtered .filtered-filters { | ||
justify-content: space-around; /* Adjust for smaller screens */ | |||
justify-content: space-around; /* Adjust | |||
} | } | ||
} | } |