1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-13 23:13:36 +00:00

[CL-381] Update spacing around form elements (#10432)

This commit is contained in:
Victoria League
2024-08-07 15:45:03 -04:00
committed by GitHub
parent 36921ed80b
commit f545dca3b6
2 changed files with 2 additions and 2 deletions

View File

@@ -33,7 +33,7 @@ export class FormControlComponent {
@HostBinding("class") get classes() {
return []
.concat(this.inline ? ["tw-inline-block", "tw-mr-4"] : ["tw-block"])
.concat(this.disableMargin ? [] : ["tw-mb-6"]);
.concat(this.disableMargin ? [] : ["tw-mb-4"]);
}
constructor(private i18nService: I18nService) {}

View File

@@ -66,7 +66,7 @@ export class BitFormFieldComponent implements AfterContentChecked {
@HostBinding("class")
get classList() {
return ["tw-block"].concat(this.disableMargin ? [] : ["tw-mb-6"]);
return ["tw-block", "tw-pt-2"].concat(this.disableMargin ? [] : ["tw-mb-4"]);
}
/**