Skip to content
This repository has been archived by the owner on May 22, 2021. It is now read-only.

Issue: Signup Modal closing upon clicking on the white space around hero text or input box #1268

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion app/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,10 @@ footer li:hover {
flex-shrink: 0;
}

.firefox-signup-logo {
margin-bottom: 130px;
}

#password-msg::after {
content: '\200b';
}
Expand Down Expand Up @@ -377,4 +381,4 @@ select {
background-image: var(--violet-gradient);
}

/* end signin button color experiment */
/* end signin button color experiment */
2 changes: 1 addition & 1 deletion app/ui/modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module.exports = function(state, emit) {
<div
class="h-full w-full max-h-screen absolute top-0 flex items-center justify-center"
>
<div class="w-full" onclick="${e => e.stopPropagation()}">
<div class="w-full h-full" onclick="${e => e.stopPropagation()}">
${state.modal(state, emit, close)}
</div>
</div>
Expand Down