79331303

Date: 2025-01-05 18:26:28
Score: 1
Natty:
Report link

You need to change overflow value to hidden in .center class selector.

.center {
  text-align: center;
  min-width: 0;
  min-height: 0;
  /*This is wrong
    overflow: auto;
  change to*/
  overflow-y: hidden;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: InternetWanderer