how to target landscape mode with array of values notation ?
for instance I have
width={[1, 1/2, 1/3]}
and I'd like to set different widths when landscape mode ...
You'd probably want to roll your own style functions that use orientation media queries – styled-system only handles min-width based media queries (i.e. mobile-first, content-based responsive styles)
how to target landscape mode with array of values notation ? for instance I have
width={[1, 1/2, 1/3]}
and I'd like to set different widths when landscape mode ...