mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 07:43:35 +00:00
* Adjust radio groups margin * Move hint margin to input field * Tweak field spacing * Add story for hint, and fix hint display * Fix label ssue * Revert input margin * Re-add margin to hint * Change font weight * Fix required placement * Add support for required * Change margin of radio group * Remove unnecessary div * Fix long inputs cutting off * Fix radio story * Remove newline --------- Co-authored-by: Will Martin <contact@willmartian.com>
16 lines
416 B
HTML
16 lines
416 B
HTML
<bit-form-control [inline]="!block" disableMargin>
|
|
<input
|
|
type="radio"
|
|
bitRadio
|
|
[id]="inputId"
|
|
[disabled]="groupDisabled || disabled"
|
|
[value]="value"
|
|
[checked]="selected"
|
|
(change)="onInputChange()"
|
|
(blur)="onBlur()"
|
|
/>
|
|
|
|
<ng-content select="bit-label" ngProjectAs="bit-label"></ng-content>
|
|
<ng-content select="bit-hint" ngProjectAs="bit-hint"></ng-content>
|
|
</bit-form-control>
|