mirror of
https://github.com/bitwarden/browser
synced 2026-02-26 17:43:22 +00:00
* Fix all dialogs to use ng-container for bitDialogFooter * Fix button spacing * Fix send icon spacing
19 lines
592 B
HTML
19 lines
592 B
HTML
<app-change-kdf *ngIf="showChangeKdf"></app-change-kdf>
|
|
<div
|
|
[ngClass]="{ 'tw-mt-6': !showChangeKdf, 'tw-mt-16': showChangeKdf }"
|
|
class="tw-border-0 tw-mb-0 tw-pb-2.5"
|
|
>
|
|
<h2 bitTypography="h2">{{ "apiKey" | i18n }}</h2>
|
|
</div>
|
|
<p bitTypography="body1">
|
|
{{ "userApiKeyDesc" | i18n }}
|
|
</p>
|
|
<div class="tw-flex tw-gap-2">
|
|
<button type="button" bitButton buttonType="secondary" (click)="viewUserApiKey()">
|
|
{{ "viewApiKey" | i18n }}
|
|
</button>
|
|
<button type="button" bitButton buttonType="secondary" (click)="rotateUserApiKey()">
|
|
{{ "rotateApiKey" | i18n }}
|
|
</button>
|
|
</div>
|