Fix login button misalignments (PR #7, from @karlprieb)

Fixes the misalignments that were brought in with modifying the corners
pull/9/head v1.0.2
Paróczai Olivér 2021-10-17 09:46:08 +00:00 zatwierdzone przez GitHub
commit 45c07dcee9
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 10 dodań i 0 usunięć

Wyświetl plik

@ -33,3 +33,13 @@ a.button,
select {
border-radius: var(--border-radius-pill) !important;
}
/* Fix some button misalignments */
#body-login input.primary { /* For login button */
width: 100% !important;
}
#body-login .two-factor-submit { /* For two factor submit button */
width: 269px !important; /* It's a hardcoded width, following the same hardcoded width from the two factor input. That's just sad :( */
}