Form-field: Wrap the label/error message when it is too long.

This commit is contained in:
infiinte-persistence 2020-06-08 08:29:52 +02:00 committed by Sean Yesmunt
parent 861dd2a70f
commit 39f13e1b3a

View file

@ -94,6 +94,13 @@ fieldset-group {
fieldset-section:last-child {
width: 100%;
label {
// Overwrite the input's label to wrap instead. This is usually
// an error message, which could be long in other languages.
width: 100%;
white-space: normal;
}
input {
border-left: 0;
border-top-left-radius: 0;