Close #2641 Squashed commit of the following: commit 3d7280418e42c1607dd644fdbf5faab870470c93 Author: Artem Baskal <a.baskal@adguard.com> Date: Mon Feb 15 18:37:11 2021 +0300 Update changelog order commit 98e46fe3285b294de5f0b5525611cfb18afb63f3 Author: Artem Baskal <a.baskal@adguard.com> Date: Mon Feb 15 18:30:53 2021 +0300 Update changelog commit 5342d7c7bc5ca40888a4daeef1526464b861ef29 Author: Artem Baskal <a.baskal@adguard.com> Date: Mon Feb 15 18:03:14 2021 +0300 2641: Fix optical issue on custom rules
55 lines
906 B
CSS
55 lines
906 B
CSS
/* Disable Auto Zoom in Input - Safari on iPhone https://stackoverflow.com/a/6394497 */
|
|
@media screen and (max-width: 767px) {
|
|
input, select, textarea {
|
|
font-size: 1rem;
|
|
}
|
|
}
|
|
|
|
.login {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
align-items: stretch;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.login__form {
|
|
margin: auto;
|
|
padding: 40px 15px 100px;
|
|
width: 100%;
|
|
max-width: 24rem;
|
|
}
|
|
|
|
.login__info {
|
|
position: relative;
|
|
text-align: center;
|
|
}
|
|
|
|
.login__message,
|
|
.login__link {
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
letter-spacing: 0;
|
|
}
|
|
|
|
@media screen and (min-width: 992px) {
|
|
.login__message {
|
|
position: absolute;
|
|
top: 40px;
|
|
padding: 0 15px;
|
|
}
|
|
}
|
|
|
|
.form__group {
|
|
position: relative;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.form__message {
|
|
font-size: 11px;
|
|
}
|
|
|
|
.form__message--error {
|
|
color: var(--red);
|
|
}
|