master
mahdi andalib 3 years ago
parent a4371b784f
commit 7714d8badf
  1. 6
      src/App.js
  2. 44
      src/components/PopupCard/index.js

@ -74,7 +74,7 @@ function App() {
{/* <BookDesign /> */} {/* <BookDesign /> */}
{/* <ButtonDesign /> */} {/* <ButtonDesign /> */}
{/* <ProductTags /> */} {/* <ProductTags /> */}
{/* <CounterDesign /> */} <CounterDesign />
{/* <BlogDesign1 /> */} {/* <BlogDesign1 /> */}
{/* <BlogDesign2 /> */} {/* <BlogDesign2 /> */}
{/* <BlogDesign3 /> */} {/* <BlogDesign3 /> */}
@ -85,10 +85,10 @@ function App() {
{/* <Testttt /> */} {/* <Testttt /> */}
{/* <Design2D /> */} {/* <Design2D /> */}
{/* <Features /> */} {/* <Features /> */}
{/* <Feedback /> */} <Feedback />
{/* <Alert /> */} {/* <Alert /> */}
{/* <Toast /> */} {/* <Toast /> */}
{/* <ProductSuggestion /> */} <ProductSuggestion />
{/* <ProductImage /> */} {/* <ProductImage /> */}
{/* <ProductTab /> */} {/* <ProductTab /> */}
{/* <ProductStatusCard /> */} {/* <ProductStatusCard /> */}

@ -4,7 +4,7 @@ import "./index.scss";
import cancleIcon from "./cancle-icon.svg"; import cancleIcon from "./cancle-icon.svg";
import calender from "./calender.svg"; import calender from "./calender.svg";
const PopupCard = () => { const PopupCard = ({ textArea }) => {
const [activeInput, setActiveInput] = useState(false); const [activeInput, setActiveInput] = useState(false);
return ( return (
@ -78,30 +78,25 @@ const PopupCard = () => {
{/* middle */} {/* middle */}
<div className="flex"> <div className="flex">
{/* right */} {/* right */}
<textarea <div className="flex flex-col">
class="resize-y relative w-1/2 border-2 rounded-md text-sm border-[#06BACE] <span
class="resize-y relative w-1/2 h-fit p-4 text-justify border-2 rounded-md text-sm border-[#06BACE]
focus:outline-none focus:border-[#22577E] focus:ring-1 focus:ring-[#22577E]" focus:outline-none focus:border-[#22577E] focus:ring-1 focus:ring-[#22577E]"
></textarea> >
<span {textArea}
className={`absolute right-20 -mt-2 text-[#06BACE] bg-white text-xs px-2 font-bold`} </span>
> <span
نام کارت className={`absolute right-20 -mt-2 text-[#06BACE] bg-white text-xs px-2 font-bold`}
</span> >
{/* divider */} نام کارت
<div className="bg-[#DBDBDB] w-0.5 mx-5"></div> </span>
{/* left */} <div className="my-5">
<div date-rangepicker className="flex items-center w-1/2"> <input type="checkbox" />
<div className="relative w-full"> <span className="text-sm mr-2">چک لیست ها</span>
<img src={calender} className="absolute top-3 left-2" />
<input
name="start"
type="text"
className="w-full border-2 border-blue-400 rounded-md text-sm h-12
focus:outline-none focus:border-[#22577E] focus:ring-1 focus:ring-[#22577E]"
placeholder="چهارشنبه 10 فروردین 1401 بماند به یادگار"
/>
</div> </div>
</div> </div>
{/* divider */}
<div className="bg-[#DBDBDB] w-0.5 mx-5"></div>
</div> </div>
</div> </div>
</div> </div>
@ -112,3 +107,8 @@ const PopupCard = () => {
}; };
export default PopupCard; export default PopupCard;
PopupCard.defaultProps = {
textArea:
"جنگ اول خلیج فارس، جنگی به رهبری آمریکا و با همکاری ائتلافی از ۳۵ کشور مختلف بود که علیه عراق بعثی در واکنش به اشغال کویت توسط عراق انجام گرفت پایان جنگ ایران و عراق هم زمان با بروز تشنّج عراق و کویت بود. ارتش عراق در زمان حکومت صدام حسین و حزب بعث عراق د",
};

Loading…
Cancel
Save