Skip to content

Commit

Permalink
Rectified the pop up issue
Browse files Browse the repository at this point in the history
  • Loading branch information
PulkitShubham committed Oct 19, 2024
1 parent 402ba42 commit d0aed92
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@
animation: fadeIn 1s ease-in-out forwards; /* Fade in animation */
}

body.loaded .popup {
display: flex; /* Show popup after loading */
}

/* Smooth fade-in effect for content */
@keyframes fadeIn {
to {
Expand All @@ -64,7 +68,7 @@
body {
margin: 0;
padding: 0;
overflow: hidden;
overflow: hidden; /* Prevent scrolling while loader is visible */
background-color: #f0f4f8;
}
</style>
Expand Down

0 comments on commit d0aed92

Please sign in to comment.