Improve login accessibility

This commit is contained in:
Eva 2022-11-28 08:44:19 +01:00 committed by Andrey Antukh
parent 8bc265a598
commit 95a18fce8d
20 changed files with 978 additions and 251 deletions

View file

@ -14,6 +14,7 @@
border-radius: 3px;
cursor: pointer;
display: flex;
font-family: "worksans", sans-serif;
font-size: $fs12;
height: 30px;
justify-content: center;
@ -42,7 +43,8 @@
@extend %btn;
background: $color-primary;
color: $color-black;
&:hover {
&:hover,
&:focus {
background: $color-black;
color: $color-primary;
}
@ -503,16 +505,6 @@ input[type="checkbox"] {
margin-top: 1px 0 0;
}
input:focus,
select:focus,
textarea:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
box-shadow: none;
outline: none;
}
.form-errors {
color: $color-danger;
}