Skip to content

Commit

Permalink
fixed the padding of popup modal and shortened its duration
Browse files Browse the repository at this point in the history
  • Loading branch information
rajveeerr authored Oct 29, 2024
1 parent e4ef784 commit dab6607
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Html-files/menu.html
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@
transform: translateX(-50%);
background-color: #ffffff;
color: #000000;
padding: 18px 32.5px;
padding: 18px 32.5px 2px 32.5px;
border-radius: 30px;
font-size: 16px;
z-index: 100000;
Expand Down Expand Up @@ -1038,11 +1038,11 @@ <h4 style="font-family: var(--ff-philosopher);color: hsl(304, 14%, 46%);">Follow
popupModal.classList.add('show');
setTimeout(() => {
popupModal.classList.add('fade-out');
}, 5000);
}, 2000);

setTimeout(() => {
popupModal.classList.remove('show', 'fade-out');
}, 6000);
}, 3000);
}


Expand Down

0 comments on commit dab6607

Please sign in to comment.