Skip to content

Commit

Permalink
fix: Design issues on input elements
Browse files Browse the repository at this point in the history
  • Loading branch information
Adamou02 committed Feb 6, 2024
1 parent a899eec commit 962b099
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<label [for]="input?.label" class="block mb-2 text-sm font-medium text-gray-900 dark:text-black">{{ input?.fieldname

Check warning on line 2 in src/app/components/profil-folder/profil-inputs/profil-inputs.component.html

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (fieldname)
}}</label>
<input [name]="input?.label" [type]="input?.type" [id]="input?.label" [class.cursor-not-allowed]="isCursorNotAllowed()"
class="text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2?.5 dark:bg-gray-300 bg-gray-300 dark:border-gray-600 dark:value-gray-400 dark:text-black dark:focus:ring-blue-500 dark:focus:border-blue-500"
class="text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full h-10 p-2 dark:bg-gray-300 bg-gray-300 dark:border-gray-600 dark:value-gray-400 dark:text-black dark:focus:ring-blue-500 dark:focus:border-blue-500"
[(ngModel)]="input.value" [disabled]="input?.disabled" [attr.pattern]="input?.pattern"
(change)="onValueChanged($event)">

Expand Down

0 comments on commit 962b099

Please sign in to comment.