@@ -395,7 +395,9 @@ function CheckboxOptionItem({
395395 />
396396 ) }
397397 />
398- < label htmlFor = { option . name } > { option . friendlyName ?? option . name } </ label >
398+ < label className = "form-label" htmlFor = { option . name } >
399+ { option . friendlyName ?? option . name }
400+ </ label >
399401 </ >
400402 ) ;
401403}
@@ -434,7 +436,7 @@ function PasswordOptionItem({
434436 const tooltipContainerId = `option-is-secret-${ option . name } ` ;
435437 return (
436438 < >
437- < label htmlFor = { option . name } >
439+ < label className = "form-label" htmlFor = { option . name } >
438440 { option . friendlyName ?? option . name } { " " }
439441 < div id = { tooltipContainerId } className = "d-inline" >
440442 < KeyFill className = { cx ( "bi" , "ms-1" ) } />
@@ -514,7 +516,7 @@ function PasswordOptionItemStored({
514516 const tooltipContainerId = `option-is-secret-${ option . name } ` ;
515517 return (
516518 < >
517- < label htmlFor = { option . name } >
519+ < label className = "form-label" htmlFor = { option . name } >
518520 { option . friendlyName ?? option . name } { " " }
519521 < div id = { tooltipContainerId } className = "d-inline" >
520522 < KeyFill className = { cx ( "bi" , "ms-1" ) } />
@@ -582,7 +584,9 @@ function InputOptionItem({
582584 : option . friendlyName ?? option . name ;
583585 return (
584586 < >
585- < label htmlFor = { option . name } > { inputName } </ label >
587+ < label className = "form-label" htmlFor = { option . name } >
588+ { inputName }
589+ </ label >
586590
587591 < Controller
588592 name = { option . name }
0 commit comments