Closed ctfdavis closed 3 days ago
The responsive setting currently turns input breakpoints into the below:
responsive
"(min-width: ${previousBreakpoint}px) and (max-width: ${breakpoint}px)"
Aligning with modern practices, the input breakpoints should be treated as min-width only instead:
"(min-width: ${breakpoint}px)"
released in v0.5.0
The
responsive
setting currently turns input breakpoints into the below:"(min-width: ${previousBreakpoint}px) and (max-width: ${breakpoint}px)"
Aligning with modern practices, the input breakpoints should be treated as min-width only instead:
"(min-width: ${breakpoint}px)"