A a matter of clarification, the dropdowns are supposed to be styled like normal text.
I believe we need to have the h2 font-size and line-height on mobile to drop down to around 32px. Tablet landscape and portrait seem to be fine at 54px.
responsive.custom @media only screen and (max-width: 480px) {
h2 { font-size: 32px; line-height: 32px; } ...
The issue is that the javascript library in use purposely ignores any mobile device. There are 3 options here:
This was fixed with #2021733: Stream filters have display issues on mobile devices.
Automatically closed -- issue fixed for 2 weeks with no activity.
Comments
Comment #1
Zarabadoo commentedA a matter of clarification, the dropdowns are supposed to be styled like normal text.
Comment #2
rosemeria commentedI believe we need to have the h2 font-size and line-height on mobile to drop down to around 32px.
Tablet landscape and portrait seem to be fine at 54px.
responsive.custom
@media only screen and (max-width: 480px) {
h2 {
font-size: 32px;
line-height: 32px;
}
...
Comment #3
Zarabadoo commentedThe issue is that the javascript library in use purposely ignores any mobile device. There are 3 options here:
Comment #4
ezra-g commentedThis was fixed with #2021733: Stream filters have display issues on mobile devices.