fix form label display inline (with bootstrap5 theme)

This commit is contained in:
Mathieu Jaumotte 2021-07-08 15:03:00 +02:00
parent 0b329a9c9b
commit 4937fd00fc

View File

@ -49,9 +49,12 @@ form {
}
}
}
label.required:after {
content: " *";
color: $red;
label {
display: inline;
&.required:after {
content: " *";
color: $red;
}
}
}