quimper: keep hiding form title on mobile

It's actually duplicated as a title field with a mobile-only class
within the form.
This commit is contained in:
Frédéric Péters 2022-01-03 21:39:10 +01:00
parent e86212ee85
commit ef0c0b0e18
2 changed files with 8 additions and 0 deletions

View File

@ -649,6 +649,12 @@ div#rub_service.has-sidebox > h2 {
}
}
.form-content--titlebar {
@media screen and (max-width: $nav-mobile-limit) {
display: none;
}
}
div#rub_service h3[data-field-id] {
font-family: $title-font-family;
color: $title-color;

View File

@ -64,3 +64,5 @@ $carrousel-text-position: bottom left;
$wcs-steps-background: #b3b3b3;
$wcs-step-current-color: $mauve;
$wcs-steps-small-layout-limit: $mobile-limit;
$form-titlebar-mode: form;