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
I ran into an issue where my font changed when I would open and close the menu.
When the bm-overlay class is added to the body it is a string concatenation, but there is no space in front of bm-overlay so it would concat with the last class I had on body.
Using classList instead of className is a beter way to add and remove classes.
The text was updated successfully, but these errors were encountered:
I ran into an issue where my font changed when I would open and close the menu.
When the bm-overlay class is added to the body it is a string concatenation, but there is no space in front of bm-overlay so it would concat with the last class I had on body.
Using classList instead of className is a beter way to add and remove classes.
The text was updated successfully, but these errors were encountered: