Compare commits

..

1 Commits

Author SHA1 Message Date
victorAnumudu 74b2a554f1 height adjust 2024-06-28 14:37:32 +01:00
2 changed files with 6 additions and 5 deletions
+2 -2
View File
@@ -85,7 +85,7 @@ export default function AvailableJobsCard({
// backgroundImage: `url('${image}')`, // backgroundImage: `url('${image}')`,
// }} // }}
> >
<div className="flex flex-col h-full bg-slate-100 p-2 rounded-md"> <div className="flex flex-col min-h-full bg-slate-100 p-2 rounded-md">
<p>{datas.description}</p> <p>{datas.description}</p>
</div> </div>
</div> </div>
@@ -95,7 +95,7 @@ export default function AvailableJobsCard({
<div className="flex justify-between"> <div className="flex justify-between">
<div className="flex items-center space-x-2"> <div className="flex items-center space-x-2">
<div> <div>
<p className="font-bold text-xl tracking-wide line-clamp-1 text-dark-gray dark:text-white"> <p className="w-full font-bold text-xl tracking-wide text-dark-gray dark:text-white">
{/* {thePrice} | {datas.timeline_days} day(s) */} {/* {thePrice} | {datas.timeline_days} day(s) */}
{thePrice} {thePrice}
</p> </p>
@@ -252,7 +252,7 @@ const MarketPopUp = ({ details, onClose, situation, marketInt }) => {
<div className="mx-auto bg-[#f1f8ff] dark:bg-[#C2C8D3] px-4 rounded-md md:min-h-[420px] flex flex-col justify-between"> <div className="mx-auto bg-[#f1f8ff] dark:bg-[#C2C8D3] px-4 rounded-md md:min-h-[420px] flex flex-col justify-between">
<div className="w-full flex flex-col justify-center pb-4 gap-2"> <div className="w-full flex flex-col justify-center pb-4 gap-2">
<p className="job-label w-full"> <p className="job-label w-full">
Interested? Interested in the task?
</p> </p>
<hr /> <hr />
<button <button
@@ -262,8 +262,9 @@ const MarketPopUp = ({ details, onClose, situation, marketInt }) => {
> >
{" "} {" "}
<div className="w-full flex flex-col justify-between gap-2"> <div className="w-full flex flex-col justify-between gap-2">
<span>Notify</span> <span>Send</span>
<span>Owner</span> <span>Interest</span>
<span>Request</span>
</div> </div>
</button> </button>
<> <>