mirror of
https://github.com/bitwarden/browser
synced 2025-12-11 22:03:36 +00:00
[PM-10721] Autofill section styles fixes (#10454)
* [PM-10721] Remove autofill section title hyphen * [PM-10721] Use h6 styling for header * [PM-10721] Fix spacing for match detection select
This commit is contained in:
@@ -3881,7 +3881,7 @@
|
|||||||
"message": "Authenticator key"
|
"message": "Authenticator key"
|
||||||
},
|
},
|
||||||
"autofillOptions": {
|
"autofillOptions": {
|
||||||
"message": "Auto-fill options"
|
"message": "Autofill options"
|
||||||
},
|
},
|
||||||
"websiteUri": {
|
"websiteUri": {
|
||||||
"message": "Website (URI)"
|
"message": "Website (URI)"
|
||||||
|
|||||||
@@ -52,7 +52,7 @@
|
|||||||
"message": "Authenticator key"
|
"message": "Authenticator key"
|
||||||
},
|
},
|
||||||
"autofillOptions": {
|
"autofillOptions": {
|
||||||
"message": "Auto-fill options"
|
"message": "Autofill options"
|
||||||
},
|
},
|
||||||
"websiteUri": {
|
"websiteUri": {
|
||||||
"message": "Website (URI)"
|
"message": "Website (URI)"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<bit-section [formGroup]="autofillOptionsForm">
|
<bit-section [formGroup]="autofillOptionsForm">
|
||||||
<bit-section-header>
|
<bit-section-header>
|
||||||
<h2 bitTypography="h5">
|
<h2 bitTypography="h6">
|
||||||
{{ "autofillOptions" | i18n }}
|
{{ "autofillOptions" | i18n }}
|
||||||
</h2>
|
</h2>
|
||||||
</bit-section-header>
|
</bit-section-header>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<ng-container [formGroup]="uriForm">
|
<ng-container [formGroup]="uriForm">
|
||||||
<bit-form-field>
|
<bit-form-field [class.!tw-mb-1]="showMatchDetection">
|
||||||
<bit-label>{{ uriLabel }}</bit-label>
|
<bit-label>{{ uriLabel }}</bit-label>
|
||||||
<input bitInput formControlName="uri" #uriInput />
|
<input bitInput formControlName="uri" #uriInput />
|
||||||
<button
|
<button
|
||||||
@@ -22,7 +22,7 @@
|
|||||||
></button>
|
></button>
|
||||||
</bit-form-field>
|
</bit-form-field>
|
||||||
|
|
||||||
<bit-form-field *ngIf="showMatchDetection" class="!tw-mb-9 -tw-mt-4">
|
<bit-form-field *ngIf="showMatchDetection" class="!tw-mb-5">
|
||||||
<bit-label>{{ "matchDetection" | i18n }}</bit-label>
|
<bit-label>{{ "matchDetection" | i18n }}</bit-label>
|
||||||
<bit-select formControlName="matchDetection" #matchDetectionSelect>
|
<bit-select formControlName="matchDetection" #matchDetectionSelect>
|
||||||
<bit-option
|
<bit-option
|
||||||
|
|||||||
Reference in New Issue
Block a user