Skip to content

Commit

Permalink
more lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewwaltosssw committed Jun 17, 2024
1 parent ffa6adb commit 4a4452d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions components/textInputWithCount/textInputWithCount.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,13 @@ export const TextInputWithCount = (max: number, isTextArea: boolean = false) =>
<div className="flex flex-col gap-2">
{isTextArea ? (
<textarea
// eslint-disable-next-line tailwindcss/no-custom-classname
className="focus:shadow-outline block min-h-40 w-full resize-y rounded-md border border-gray-200 px-3 py-2 text-base text-gray-600 shadow-inner focus:border-blue-500 focus:text-gray-900"
{...input}
/>
) : (
<input
// eslint-disable-next-line tailwindcss/no-custom-classname
className="focus:shadow-outline block w-full rounded-md border border-gray-200 bg-white px-3 py-2 text-base text-gray-600 shadow-inner transition-all duration-150 ease-out placeholder:text-gray-300 focus:border-blue-500 focus:text-gray-900 focus:outline-none"
{...input}
/>
Expand Down

0 comments on commit 4a4452d

Please sign in to comment.