#Watch
1 messages · Page 1 of 1 (latest)
it be looking good
btw there's a thing to set scrollbar always visible in css, it might help when the modal pops up
overflow-y: auto;
scrollbar-gutter: stable;
``` that i think, can't remember lol
oh yeah
I used:
body.w-lightbox-noscroll {
overflow-y: scroll !important;
}
aaaand didn't work, gota fix it
there we go
had to change it to:
/* Force scrollbar to always stay visible */
body {
overflow-y: scroll !important;
}
</style>```

i may just have to duplicate and then refactor all of this for tablet/mobile responsiveness ugh
so the mobile version is display:none on desktop breakpoints and the desktop version is display:none on mobile
do they not let you use tailwind?
this is all done on Webflow