79331664

Date: 2025-01-05 22:30:35
Score: 0.5
Natty:
Report link

Setting the sidebar class's top property to 0 seems to solve the issue.

.sidebar {
  top: 0; /* Like so */
  position: fixed;
  left: -250px;
  width: 250px;
  height: 100%;
  background: #042331;
  transition: all .5s ease;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: badAtCoding