Compare commits

...

4 Commits

3 changed files with 6 additions and 3 deletions
@@ -230,9 +230,9 @@ export default function AssignPrevNewTask({
) : ( ) : (
<button <button
type="button" type="button"
disabled={requestStatus.loading} disabled={requestStatus.loading || requestStatus.status}
onClick={assignFamilyTask} onClick={assignFamilyTask}
className="custom-btn btn-gradient text-white" className={`custom-btn btn-gradient text-white ${requestStatus.status && 'opacity-50'}`}
> >
Assign Assign
</button> </button>
+1 -1
View File
@@ -560,7 +560,7 @@ const JobFieldInput = ({
<Field <Field
component="select" component="select"
name={inputName} name={inputName}
className={`input-field placeholder:text-base text-dark-gray w-full h-full bg-white outline-none px-2`} className={`options-default`}
value={value} value={value}
> >
{/* <option value="">{optionText}</option> */} {/* <option value="">{optionText}</option> */}
+3
View File
@@ -194,6 +194,9 @@
.logout-btn { .logout-btn {
@apply px-4 min-w-[80px] h-[52px] flex justify-center items-center text-xl font-bold rounded-full cursor-pointer @apply px-4 min-w-[80px] h-[52px] flex justify-center items-center text-xl font-bold rounded-full cursor-pointer
} }
.options-default {
@apply px-2 placeholder:text-sm w-full h-full bg-white outline-none text-sm text-slate-900 dark:text-white
}
} }
/* ===================== EXTRA ===================== */ /* ===================== EXTRA ===================== */