mirror of
https://github.com/bitwarden/browser
synced 2025-12-06 00:13:28 +00:00
remove hint margin in radio button (#14223)
This commit is contained in:
@@ -16,7 +16,7 @@ let nextId = 0;
|
||||
export class RadioButtonComponent {
|
||||
@HostBinding("attr.id") @Input() id = `bit-radio-button-${nextId++}`;
|
||||
@HostBinding("class") get classList() {
|
||||
return [this.block ? "tw-block" : "tw-inline-block", "tw-mb-1"];
|
||||
return [this.block ? "tw-block" : "tw-inline-block", "tw-mb-1", "[&_bit-hint]:tw-mt-0"];
|
||||
}
|
||||
|
||||
@Input() value: unknown;
|
||||
|
||||
Reference in New Issue
Block a user