Ensure Bulma columns don't cut off their content or lose all their padding
Turns out the problem was actually the negative margin that Bulma puts on columns
(generally a div
containing one or more column
div
s).
I tried to find where i might have been messing with the padding of the interior column
-classed div
s but didn’t find it (presumably i did somehow though?).
Added class is-marginless
to the problematic div
with the columns
class.
Remove negative margins ’leaking’ content with is-marginless
Not clear why this was a problem.
Maybe related: https://github.com/jgthms/bulma/issues/1047