Skip to content

Commit

Permalink
fix: text color in text-input-component
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuelRauber committed Jan 27, 2024
1 parent 5b0434b commit fd700f6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<label [for]="id" class="mb-2 block text-sm font-medium text-gray-900">{{ label }}</label>
<label [for]="id" class="mb-2 block text-sm font-medium">{{ label }}</label>
<input
[attr.id]="id"
[formControl]="control"
[placeholder]="placeholder"
[autocomplete]="autoComplete"
class="block w-full rounded-lg border border-gray-300 bg-gray-50 p-2.5 text-sm text-gray-900 focus:border-blue-500 focus:ring-blue-500 dark:border-gray-600 dark:bg-gray-700 dark:placeholder-gray-400 dark:focus:border-blue-500 dark:focus:ring-blue-500"
class="block w-full rounded-lg border border-gray-300 bg-gray-50 p-2.5 text-sm focus:border-blue-500 focus:ring-blue-500 dark:border-gray-600 dark:bg-gray-700 dark:placeholder-gray-400 dark:focus:border-blue-500 dark:focus:ring-blue-500"
type="text" />

0 comments on commit fd700f6

Please sign in to comment.