This is about Bulma
This is about the Bulma CSS framework
I'm using Bulma version 0.7.5
My browser is: Chrome
My OS is MacOS 10.14.6 (Mojave)
<html>
<body>
<div class="columns">
<div class="column"></div>
<div class="column"></div>
</div>
</body>
</html>
when swiping right/left on a magic-mouse or touch-pad the page will show an elastic stretch right/left (this is normal)
swiping left works, swiping right doesn't.
The only solution I have found to this is to wrap the columns in overflow:"hidden"
<html>
<body>
<div style="overflow:hidden;">
<div class="columns">
<div class="column"></div>
<div class="column"></div>
</div>
</div>
</body>
</html>
a recurring issue. some fixes mentioned here: https://github.com/jgthms/bulma/issues/1540/.
I have the padding set to .container by default. ymmv.
This is a duplicate of https://github.com/jgthms/bulma/issues/1540
Thank you
The only solution I have found to this is to wrap the
columnsinoverflow:"hidden"<html> <body> <div style="overflow:hidden;"> <div class="columns"> <div class="column"></div> <div class="column"></div> </div> </div> </body> </html>
right!
Most helpful comment
The only solution I have found to this is to wrap the
columnsinoverflow:"hidden"