procedure_context: hide the description on auth pages

This commit is contained in:
Pierre de La Morinerie 2019-04-01 15:03:13 +02:00
parent e896310e34
commit adefd26413
4 changed files with 18 additions and 1 deletions

View file

@ -3,6 +3,19 @@
@import "placeholders";
@import "mixins";
#auth {
// On small screens, hide the procedure description text on auth pages.
// It avoids pushing the sign-in/sign-up form out of the viewport.
//
// The procedure description can still be read from the /commencer
// pages.
@media (max-width: $two-columns-breakpoint) {
.procedure-description {
display: none;
}
}
}
.auth-form {
.auth-options {
display: flex;