1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-27 07:39:49 +01:00

[PM-13150] Remove uses of row-main Bootstrap class in Account Security Settings (#11650)

* Remove uses of row-main Bootstrap class in Account Security Settings component

* Remove class from new component

* Remove extra div

* Remove extra markup
This commit is contained in:
Alec Rippberger 2024-10-25 13:58:02 -05:00 committed by GitHub
parent 8b64f0de9c
commit 2fb6a9e1ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -94,7 +94,7 @@
</bit-section-header>
<bit-item>
<button bit-item-content type="button" appStopClick (click)="fingerprint()">
<div class="row-main">{{ "fingerprintPhrase" | i18n }}</div>
{{ "fingerprintPhrase" | i18n }}
</button>
</bit-item>
<bit-item>
@ -115,11 +115,11 @@
"
>
<button bit-item-content type="button" appStopClick (click)="lock()"></button>
<div class="row-main">{{ "lockNow" | i18n }}</div>
{{ "lockNow" | i18n }}
</bit-item>
<bit-item *ngIf="!accountSwitcherEnabled">
<button bit-item-content type="button" appStopClick (click)="logOut()"></button>
<div class="row-main">{{ "logOut" | i18n }}</div>
{{ "logOut" | i18n }}
</bit-item>
</bit-section>
</div>