79496997

Date: 2025-03-10 04:10:05
Score: 1
Natty:
Report link

It looks like your layout shifts or breaks when the SweetAlert (Swal) message appears. Here are some possible fixes:

  1. Prevent Swal from Affecting Layout:

    set " backdrop: false ".


Swal.fire({
title: "OTP Verified Successfully",
text: "You can now continue",
icon: "success",
backdrop: false // Prevents background effects
});

  1. Set Fixed Width & Height for Layout Containers:

    body{ min-height: 100vh; overflow: hidden; }


Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Cezanne P