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
My toasts don't take the full width of the viewport on mobile screens. I noticed this reported in #1187, but I'm still experiencing it in 11.0.5. It looks like this only effects containers that are using the stacked prop.
The container initially has it's width set to 100vw in the breakpoint:
But then later on the container width is set to --toastify-toast-width with higher specificity when it the toasts are stacked. The variable at this scope is still 320px:
Uh oh!
There was an error while loading. Please reload this page.
My toasts don't take the full width of the viewport on mobile screens. I noticed this reported in #1187, but I'm still experiencing it in
11.0.5
. It looks like this only effects containers that are using thestacked
prop.The container initially has it's width set to
100vw
in the breakpoint:But then later on the container width is set to
--toastify-toast-width
with higher specificity when it the toasts are stacked. The variable at this scope is still320px
:My quick fix was to set the variable to
100vw
:The text was updated successfully, but these errors were encountered: