12 ms·
Pretty cool. If anyone associated with the project reads this: All of the headings on bridgetownrb.com seem to have a scroll overflow, which stops your page sc
by datene 5y ago
Pretty cool.
If anyone associated with the project reads this:
All of the headings on bridgetownrb.com seem to have a scroll overflow, which stops your page scrolling on mobile.
- thunderbong 5y agoI'm not doing this on my Android device
- datene 5y agoYou might have an android device wider than 575px, this is the media query that's causing it: ``` @media (max-width: 575px) h2 { position: relative; overflow-x: hidden; } ``` overflow-x:hidden makes overflow-y:auto, which is scroll
- jaredcwhite 5y agoMaintainer here: thanks for pointing this out! I was scratching my head wondering why this was happening… overflow: hidden works, but even overflow-x: hidden + overflow:y visible still will create the inside scrolling context. Weird. Anyway, fixed now!