1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-10 13:23:34 +00: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
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