montreuil: fix form steps display in mobile

This commit is contained in:
Serghei Mihai 2019-09-19 09:51:45 +02:00
parent 6acdc67310
commit 3ae4d93b81
1 changed files with 16 additions and 2 deletions

View File

@ -107,8 +107,22 @@ div.gru-nav {
}
}
div#steps ol li.current {
background: $secondary-color;
div#steps ol li {
span.label {
@media screen and (max-width: $mobile-limit) {
display: none;
}
}
&.current {
background: $secondary-color;
@media screen and (max-width: $mobile-limit) {
background: transparent;
}
span.label {
margin-left: 5px;
display: inline;
}
}
}
div.SubmitWidget.submit-button button {