Compare commits

...

2 Commits

Author SHA1 Message Date
victorAnumudu c64d372193 assign job rounded select tag 2024-03-19 14:33:42 +01:00
ameye abff42e0a8 Merge branch 'parent-assign-job-bug' of WrenchBoard/Users-Wrench into master 2024-03-19 12:13:06 +00:00
@@ -242,17 +242,17 @@ const AssignTaskPopout = ({
) : familyDetailsData ? ( ) : familyDetailsData ? (
` Assign ${familyDetailsData.firstname}'s Task` ` Assign ${familyDetailsData.firstname}'s Task`
) : ( ) : (
<div className="flex items-center"> <div className="flex items-center gap-2">
<span className="text-black">Assign task to{" "}</span> <span className="text-black">Assign task to{" "}</span>
<div className="w-[270px] h-[40px] ml-2"> <div className="w-[270px] h-[40px] flex items-center relative after:absolute after:content-['▼'] active:after:rotate-180 after:transition-all after:duration-300 after:z-20 after:right-2 after:top-1/2 after:-translate-y-1/2 after:text-white after:text-lg">
<select <select
name="" name=""
id="" id=""
className="text-white px-2 transition-all cursor-pointer bg-blue-900 focus:outline-none border border-gray-200 rounded-lg w-full h-full py-1" className="relative z-10 appearance-none text-lg text-white px-2 tracking-wide font-semibold transition-all cursor-pointer bg-blue-900 focus:outline-none border border-gray-200 rounded-full w-full h-full"
onChange={handleFamChange} onChange={handleFamChange}
value={selectedFamilyUid} value={selectedFamilyUid}
> >
<option value=""> <option value="" className="">
Select a kid Select a kid
</option> </option>
{familyList} {familyList}