1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-06-28 10:55:27 +02:00

placeholder text being cut off (#5100)

This commit is contained in:
cd-bitwarden 2023-04-13 13:23:19 -04:00 committed by GitHub
parent 2d2226f20d
commit 5f26e58538
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 3 deletions

View File

@ -1,5 +1,5 @@
<sm-header>
<input bitInput [placeholder]="'searchProjects' | i18n" [(ngModel)]="search" />
<input bitInput [placeholder]="'searchProjects' | i18n" [(ngModel)]="search" class="tw-w-80" />
<sm-new-menu></sm-new-menu>
</sm-header>
<sm-projects-list

View File

@ -1,5 +1,5 @@
<sm-header>
<input bitInput [placeholder]="'searchSecrets' | i18n" [(ngModel)]="search" />
<input bitInput [placeholder]="'searchSecrets' | i18n" [(ngModel)]="search" class="tw-w-80" />
<sm-new-menu></sm-new-menu>
</sm-header>
<sm-secrets-list

View File

@ -1,5 +1,10 @@
<sm-header>
<input bitInput [placeholder]="'searchServiceAccounts' | i18n" [(ngModel)]="search" />
<input
bitInput
[placeholder]="'searchServiceAccounts' | i18n"
[(ngModel)]="search"
class="tw-w-80"
/>
<sm-new-menu></sm-new-menu>
</sm-header>
<sm-service-accounts-list