79769344

Date: 2025-09-19 09:34:30
Score: 1.5
Natty:
Report link

By clicking the hamburger icon a css-class gets added to the body.

The class is ".menu-open" which sets the following:

body.menu-open {
    overflow: hidden;
}

enter image description here

You could overwrite the condition with some custom css like:

body.menu-open {
    overflow: scroll !important;
}
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kalti