Drawer mobile start from a smaller breakpoint #795
Answered
by
saadeghi
elitenoire
asked this question in
Q&A
-
The Is there a way I can make the drawer visible from a smaller breakpoint for e.g. 768px breakpoint? |
Beta Was this translation helpful? Give feedback.
Answered by
saadeghi
May 16, 2022
Replies: 1 comment
-
Currently it's only possible by adding some custom CSS: @media (min-width: 768px) {
.drawer-mobile > .drawer-toggle ~ .drawer-side > .drawer-overlay + * {
transform: translateX(0px);
}
} I will try to make it possible on the next major version. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
saadeghi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently it's only possible by adding some custom CSS:
https://play.tailwindcss.com/7zidjfRKOc?file=css
I will try to make it possible on the next major version.
I created a new issue for it here #797