Re: Label aligning/positioning
Posted: Sat Aug 02, 2025 1:39 pm
and yeah, it just fits into ContentBox as expected ))
Uzlander wrote: ↑Sat Aug 02, 2025 1:38 pm Here's some dummy workaround i'm going to use in some cases. Maybe someone else benefits from too![]()
Code: Select all
Could you describe in which cases you use the "dummy workaround"? I also noticed another issue: the asterisks (*) indicating required fields are no longer aligned with the labels. [attachment=0]Screenshot 2025-08-04 100136.png[/attachment]
Code: Select all
label.nuBlank::after, label.nuDuplicateOrBlank::after { content: none; }
label.nuBlank::before, label.nuDuplicateOrBlank::before {
content: "*";
color: #e53600;
margin-right: 6px;
}
label:not(.nuDuplicateOrBlank, .nuBlank)::before {
content: " ";
margin-right: 10px;
}