Mark Motliuk
Mark Motliuk
+1 for the fade transition
Hello. Sorry for this problem, you can try reinstalling the app to get rid of cache сб, 17 груд. 2022 р. о 05:05 Nothing ***@***.***> пише: > How can i...
in my case, I have only one text field on the screen and it has an `autofocus`. As a result, it is impossible to use the app on the web...
I found a solution !!! We can use `PageView` instead of `TabBarView`. Now we just need to manually attach `PageView` to the `TabBar`. I've added a small snippet of how...
Nevermind, there is already a package for just that https://github.com/wilin52/union_tabs lol
Prisma seems to be working now. There are still some problems now
A temporary fix inspired by https://github.com/tailwindlabs/headlessui/blob/main/packages/%40headlessui-react/src/components/dialog/dialog.tsx (and a lot of googling): ``` function closeModal() { setIsOpen(false); document.documentElement.style.overflow = ""; document.documentElement.style.paddingRight = ""; } function openModal() { const scrollbarWidth = window.innerWidth...
The text is still selectable with Ctrl+A though :(
I have tried adding `pointer-events: none;`, but I can still scroll the background and now when I click on the background, the modal does not close :) ``` ```