mirror of
https://github.com/bitwarden/browser
synced 2026-02-08 04:33:38 +00:00
* remove margin from the bottom of paragraph tag in generator spotlight * update aria-label text to match translation key * Remove `SendNudgeStatus` nudge type * update web send page to use new title and description * update old no sends title and description * hide internal contents on generator nudge * remove NudgeService from send-v2 test
18 lines
540 B
HTML
18 lines
540 B
HTML
<div class="tw-mb-4" *ngIf="showGeneratorSpotlight$ | async">
|
|
<bit-spotlight
|
|
[title]="'generatorNudgeTitle' | i18n"
|
|
(onDismiss)="dismissGeneratorSpotlight(NudgeType.GeneratorNudgeStatus)"
|
|
>
|
|
<p
|
|
class="tw-text-main tw-mb-0"
|
|
bitTypography="body2"
|
|
[attr.aria-label]="'generatorNudgeBodyAria' | i18n"
|
|
>
|
|
<span aria-hidden="true">
|
|
{{ "generatorNudgeBodyOne" | i18n }} <i class="bwi bwi-generate"></i>
|
|
{{ "generatorNudgeBodyTwo" | i18n }}
|
|
</span>
|
|
</p>
|
|
</bit-spotlight>
|
|
</div>
|