FIX: remove top gradient from signup modal (#12121)

This commit is contained in:
Kris 2021-02-18 09:12:28 -05:00 committed by GitHub
parent 2aab306665
commit c6a9142dbb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 18 deletions

View File

@ -232,8 +232,7 @@
}
.login-welcome-header {
grid-area: header;
padding: 1em 1em 1em 1em;
height: calc(110px - 2em);
padding: 1em;
.login-title {
font-size: 2.75em;
}
@ -244,23 +243,18 @@
}
.modal-body:not(.has-alt-auth) .login-form {
&:after,
&:before {
&:after {
width: 100%;
}
&:before {
top: calc(8em - 10px) !important;
}
}
.has-alt-auth .login-form,
.login-form {
background: var(--secondary);
padding: 1em;
padding: 0 1em 1em;
grid-area: form;
overflow-y: scroll;
&:after,
&:before {
&:after {
content: "";
display: block;
position: absolute;
@ -278,14 +272,6 @@
rgba(var(--secondary-rgb), 1)
);
}
&:before {
top: 110px;
background-image: linear-gradient(
to top,
rgba(var(--secondary-rgb), 0),
rgba(var(--secondary-rgb), 1)
);
}
.input-group {
margin-bottom: 1em;
input {