You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bulma 0.9.0 and 0.9.2 suffers from a slightly broken modal when the scss for bulma-o-steps is included.
The .modal element should have position: fixed, but it gets position: absolute instead, which causes the background to only fill the top part of the screen if you scroll down.
I'm guessing the problem originates from that fact that bulma-o-steps provides a big chunk of SASS (utilities/*) which seems to be copied from Bulma itself. At least that's what it looks like after a quick glance. This seems a bit brittle since there's a high potential for breakage during Bulma version upgrades.
I don't know SASS well enough to suggest a sensible workaround. However, when I just included the index.sass myself, and used just used the (already included) utilities from my Bulma install, then things worked great. Could the solution perhaps be as simple as:
Get rid of utilities/* and bulma-steps.sass from bulma-o-steps.
Change the docs to tell people to import bulma first, and then import bulma-o-steps afterwards.
The text was updated successfully, but these errors were encountered:
Bulma 0.9.0 and 0.9.2 suffers from a slightly broken modal when the scss for bulma-o-steps is included.
The
.modal
element should haveposition: fixed
, but it getsposition: absolute
instead, which causes the background to only fill the top part of the screen if you scroll down.I believe this is the same issue as in:
The workaround (as posted in the linked issues) is to simply change your scss import from
bulma-steps.sass
toindex.sass
, like this:I'm guessing the problem originates from that fact that bulma-o-steps provides a big chunk of SASS (
utilities/*
) which seems to be copied from Bulma itself. At least that's what it looks like after a quick glance. This seems a bit brittle since there's a high potential for breakage during Bulma version upgrades.I don't know SASS well enough to suggest a sensible workaround. However, when I just included the
index.sass
myself, and used just used the (already included)utilities
from my Bulma install, then things worked great. Could the solution perhaps be as simple as:utilities/*
andbulma-steps.sass
from bulma-o-steps.The text was updated successfully, but these errors were encountered: