Merge pull request #5049 from NamelessContributor/show-hints-on-mobile

simple_form: Don't hide hints on mobile. Fix #4997
This commit is contained in:
evazion
2022-03-19 19:02:46 -05:00
committed by GitHub

View File

@@ -39,7 +39,8 @@ form.simple_form {
padding-left: 1em; padding-left: 1em;
@media (max-width: 660px) { @media (max-width: 660px) {
display: none; padding-left: 0;
display: block;
} }
} }
@@ -125,6 +126,11 @@ form.inline-form {
display: table-cell; display: table-cell;
line-height: 1em; line-height: 1em;
} }
span.hint {
line-height: 1em;
padding-bottom: 0.5em;
}
} }
} }