Merge pull request #2780 from dpalou/MOBILE-3320

MOBILE-3320 ios: Make checkboxes look square
main
Pau Ferrer Ocaña 2021-05-19 16:32:58 +02:00 committed by GitHub
commit ba967ebbc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -614,9 +614,13 @@ ion-modal:focus-visible {
box-shadow: none; box-shadow: none;
} }
ion-input .native-input{ ion-input .native-input {
&:focus, &:focus-visible { &:focus, &:focus-visible {
box-shadow: none; box-shadow: none;
outline: none; outline: none;
} }
} }
ion-checkbox {
--border-radius: 2px;
}