do not show left column on small screen
This commit is contained in:
parent
7883b08a5e
commit
28005db9aa
1 changed files with 4 additions and 2 deletions
|
@ -3,14 +3,16 @@
|
|||
@import "placeholders";
|
||||
@import "mixins";
|
||||
|
||||
#auth {
|
||||
#auth,
|
||||
#agentconnect {
|
||||
// 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-preview {
|
||||
.procedure-preview,
|
||||
.agent-intro {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue