+
{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
}