Custom media queries for screen breakpoints? (like height) #302
Replies: 1 comment 1 reply
-
that wouldn't work in this library because it's only targeting native environments where there are no media queries. the current implementation for viewport width based prefixes is implemented based on the window width of the device, because we're working in a non-web environment. that doesn't meant that height-based queries can't work, it just means they can't be expressed in terms of raw web media queries. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there support for adding breakpoints that are based on height like this from tailwind
'tall': { 'raw': '(min-height: 800px)' },
? I noticed that this won't work for me, but I can adjust the min width fine like you did in the docs.Beta Was this translation helpful? Give feedback.
All reactions