1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

[CL-753] Fix popover spacing in client code (#15839)

This commit is contained in:
Vicki League
2025-08-04 10:19:07 -04:00
committed by GitHub
parent 5ec1c49914
commit f7cc937581
4 changed files with 6 additions and 4 deletions

View File

@@ -11,7 +11,7 @@
<i class="bwi bwi-question-circle" aria-hidden="true"></i>
</button>
<bit-popover [title]="'whatIsADevice' | i18n" #infoPopover>
<p>{{ "aDeviceIs" | i18n }}</p>
<p class="tw-mb-0">{{ "aDeviceIs" | i18n }}</p>
</bit-popover>
<i
*ngIf="asyncActionLoading"

View File

@@ -108,7 +108,7 @@ type PaymentMethodFormGroup = FormGroup<{
<i class="bwi bwi-question-circle tw-text-lg" aria-hidden="true"></i>
</button>
<bit-popover [title]="'cardSecurityCode' | i18n" #cardSecurityCodePopover>
<p>{{ "cardSecurityCodeDescription" | i18n }}</p>
<p class="tw-mb-0">{{ "cardSecurityCodeDescription" | i18n }}</p>
</bit-popover>
</app-payment-label>
<div id="stripe-card-cvc" class="tw-stripe-form-control"></div>

View File

@@ -12,7 +12,7 @@
</button>
<bit-popover [title]="'whatIsADevice' | i18n" #infoPopover>
<p>{{ "aDeviceIs" | i18n }}</p>
<p class="tw-mb-0">{{ "aDeviceIs" | i18n }}</p>
</bit-popover>
</div>

View File

@@ -103,7 +103,9 @@
<i class="bwi bwi-sm bwi-question-circle" aria-hidden="true"></i>
</button>
<bit-popover #totpPopover [title]="'totpHelperTitle' | i18n">
<p>{{ (canCaptureTotp ? "totpHelperWithCapture" : "totpHelper") | i18n }}</p>
<p class="tw-mb-0">
{{ (canCaptureTotp ? "totpHelperWithCapture" : "totpHelper") | i18n }}
</p>
</bit-popover>
</bit-label>
<input bitInput formControlName="totp" type="password" class="tw-font-mono" />