fix notification settings spacing and labels (#10433)
This commit is contained in:
parent
041cd87e7e
commit
0b6701d3f8
|
@ -11,39 +11,40 @@
|
||||||
<h2 bitTypography="h6">{{ "vaultSaveOptionsTitle" | i18n }}</h2>
|
<h2 bitTypography="h6">{{ "vaultSaveOptionsTitle" | i18n }}</h2>
|
||||||
</bit-section-header>
|
</bit-section-header>
|
||||||
<bit-card>
|
<bit-card>
|
||||||
<div>
|
<bit-form-control>
|
||||||
<input
|
<input
|
||||||
type="checkbox"
|
|
||||||
bitCheckbox
|
bitCheckbox
|
||||||
id="use-passkeys"
|
id="use-passkeys"
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
(change)="updateEnablePasskeys()"
|
(change)="updateEnablePasskeys()"
|
||||||
[(ngModel)]="enablePasskeys"
|
[(ngModel)]="enablePasskeys"
|
||||||
/>
|
/>
|
||||||
<label for="use-passkeys">{{ "enableUsePasskeys" | i18n }}</label>
|
<bit-label for="use-passkeys">{{ "enableUsePasskeys" | i18n }}</bit-label>
|
||||||
</div>
|
</bit-form-control>
|
||||||
<div>
|
<bit-form-control>
|
||||||
<input
|
<input
|
||||||
|
bitCheckbox
|
||||||
id="addlogin-notification-bar"
|
id="addlogin-notification-bar"
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
bitCheckbox
|
|
||||||
(change)="updateAddLoginNotification()"
|
(change)="updateAddLoginNotification()"
|
||||||
[(ngModel)]="enableAddLoginNotification"
|
[(ngModel)]="enableAddLoginNotification"
|
||||||
/>
|
/>
|
||||||
<label for="addlogin-notification-bar">{{ "enableAddLoginNotification" | i18n }}</label>
|
<bit-label for="addlogin-notification-bar">{{
|
||||||
</div>
|
"enableAddLoginNotification" | i18n
|
||||||
<div>
|
}}</bit-label>
|
||||||
|
</bit-form-control>
|
||||||
|
<bit-form-control disableMargin>
|
||||||
<input
|
<input
|
||||||
|
bitCheckbox
|
||||||
id="changedpass-notification-bar"
|
id="changedpass-notification-bar"
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
bitCheckbox
|
|
||||||
(change)="updateChangedPasswordNotification()"
|
(change)="updateChangedPasswordNotification()"
|
||||||
[(ngModel)]="enableChangedPasswordNotification"
|
[(ngModel)]="enableChangedPasswordNotification"
|
||||||
/>
|
/>
|
||||||
<label for="changedpass-notification-bar">{{
|
<bit-label for="changedpass-notification-bar">{{
|
||||||
"enableChangedPasswordNotification" | i18n
|
"enableChangedPasswordNotification" | i18n
|
||||||
}}</label>
|
}}</bit-label>
|
||||||
</div>
|
</bit-form-control>
|
||||||
</bit-card>
|
</bit-card>
|
||||||
</bit-section>
|
</bit-section>
|
||||||
<bit-section>
|
<bit-section>
|
||||||
|
|
Loading…
Reference in New Issue