Skip to content

Commit

Permalink
#210: Fix alignment of form elements on mobile screens.
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-milette committed Dec 11, 2024
1 parent 4d50a64 commit 8298b18
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions scss/trema/login.scss
Original file line number Diff line number Diff line change
Expand Up @@ -234,3 +234,13 @@ body.local-login {
}
}
}

// Adjust form label and field alignment on small screens.
@media only screen and (max-width: 560px) {
body #page .signupform .form-group.row.fitem {
display: block;
}
body #page .signupform .form-group.row.fitem .col-form-label {
max-width: 100%!important;
}
}

0 comments on commit 8298b18

Please sign in to comment.