From d457550d58558441bfde9e97fd367cd8ea70af7e Mon Sep 17 00:00:00 2001 From: victorAnumudu Date: Wed, 21 Jun 2023 15:58:40 +0100 Subject: [PATCH] offer interest page formatted --- .../OffersInterest/ManageInterestOffer.jsx | 28 +++++++++++-------- 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/src/components/OffersInterest/ManageInterestOffer.jsx b/src/components/OffersInterest/ManageInterestOffer.jsx index 19b9c1d..c472d9e 100644 --- a/src/components/OffersInterest/ManageInterestOffer.jsx +++ b/src/components/OffersInterest/ManageInterestOffer.jsx @@ -143,13 +143,15 @@ export default function ManageInterestOffer(props) { {/* info tab */} {tab == 'info' ?
-
- Name - {props.offerDetails?.client_name} -
-
- Member Since - {props.offerDetails?.client_added} +
+
+ Name + {props.offerDetails?.client_name} +
+
+ Member Since + {props.offerDetails?.client_added} +
Jobs completed @@ -226,7 +228,7 @@ export default function ManageInterestOffer(props) { {/* BUTTON section */}
-
+
{requestStatus.loading && requestStatus.processType == 'accept' ? : @@ -235,9 +237,10 @@ export default function ManageInterestOffer(props) { name='accept' disabled={requestStatus.loading} onClick={interestOfferProcess} - className="px-2 py-1 h-11 flex justify-center items-center btn-gradient text-base rounded-full text-white" + // className="px-2 py-1 h-11 flex justify-center items-center btn-gradient text-base rounded-full text-white" + className='max-w-[150px] h-[100px] bg-[#57cd89] text-center text-lg font-semibold text-white py-2 px-4 rounded-md shadow-md' > - Accept + Accept this Interest } @@ -249,9 +252,10 @@ export default function ManageInterestOffer(props) { name='reject' disabled={requestStatus.loading} onClick={interestOfferProcess} - className="px-2 py-1 h-11 flex justify-center items-center border-gradient text-base rounded-full text-black" + // className="px-2 py-1 h-11 flex justify-center items-center border-gradient text-base rounded-full text-black" + className='max-w-[150px] h-[100px] bg-red-300 text-center text-lg font-semibold text-white py-2 px-4 rounded-md shadow-md' > - Reject + Reject this Interest }