Skip to content

Commit

Permalink
fix: #618 mobile dialog fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mdansarijaved committed Oct 21, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 6fd3e8c commit b1d01b4
Showing 1 changed file with 27 additions and 26 deletions.
53 changes: 27 additions & 26 deletions app/styles/components/mobile-dialog.css
Original file line number Diff line number Diff line change
@@ -1,30 +1,31 @@
.mobile-dialog {
display: block;
border-radius: 4px;
display: block;
border-radius: 4px;
padding: 0.5rem 1rem;
font-weight: 900;
margin: 0 auto;
font-size: large;
text-align: center;
background-color: var(--form--bg);
border: none;
z-index: 2;
box-shadow: 4px 8px 8px var(--mobile-dialog-box-shadow);
& button {
padding: 0.5rem 1rem;
font-weight: 900;
margin: 0 auto;
font-size:large;
text-align: center;
background-color: var(--form--bg);
margin: 1rem;
font-size: medium;
border: none;
box-shadow: 4px 8px 8px var(--mobile-dialog-box-shadow);
& button {
padding: 0.5rem 1rem;
margin: 1rem;
font-size:medium;
border: none;
border-radius: 4px;
color: var(--body-bg-color);
font-weight: 600;
}
}

#mobile-dialog__open-button {
background-color: var(--mobile-dialog--open-button);
border-radius: 4px;
color: var(--body-bg-color);
font-weight: 600;
}

#mobile-dialog__close-button {
background-color: var(--body-bg-color);
color: var(--landing-page--main-heading);
}
}

#mobile-dialog__open-button {
background-color: var(--mobile-dialog--open-button);
}

#mobile-dialog__close-button {
background-color: var(--body-bg-color);
color: var(--landing-page--main-heading);
}

0 comments on commit b1d01b4

Please sign in to comment.