|
|
|
@ -3,27 +3,15 @@ import React from "react"; |
|
|
|
|
const SendForm = () => { |
|
|
|
|
return ( |
|
|
|
|
<div className="flex flex-col flex-1 mx-2"> |
|
|
|
|
<span className="text-sm mb-4" style={{ color: "#65A9FF" }}> |
|
|
|
|
توضیحات: |
|
|
|
|
</span> |
|
|
|
|
<span className="text-sm mb-4 text-[#65A9FF]">توضیحات:</span> |
|
|
|
|
<form className="flex flex-col "> |
|
|
|
|
<input |
|
|
|
|
placeholder="موضوع" |
|
|
|
|
className="text-xs mb-2 placeholder-blue-300 rounded-sm border p-2 focus:outline-none focus:border-blue-200 focus:ring focus:ring-blue-200 focus:ring-opacity-20" |
|
|
|
|
style={{ |
|
|
|
|
backgroundColor: "#F8FBFF", |
|
|
|
|
borderColor: "#C8DEF9", |
|
|
|
|
color: "#00253A", |
|
|
|
|
}} |
|
|
|
|
className="text-xs mb-2 placeholder-blue-300 bg-[#F8FBFF] text-[#00253A] border-[#C8DEF9] rounded-sm border p-2 focus:outline-none focus:border-blue-200 focus:ring focus:ring-blue-200 focus:ring-opacity-20" |
|
|
|
|
/> |
|
|
|
|
<textarea |
|
|
|
|
placeholder="متن" |
|
|
|
|
className="resize-none w-full h-32 placeholder-blue-300 text-xs rounded-sm border p-2 focus:outline-none focus:border-blue-200 focus:ring focus:ring-blue-200 focus:ring-opacity-20" |
|
|
|
|
style={{ |
|
|
|
|
backgroundColor: "#F8FBFF", |
|
|
|
|
borderColor: "#C8DEF9", |
|
|
|
|
color: "#00253A", |
|
|
|
|
}} |
|
|
|
|
className="resize-none bg-[#F8FBFF] text-[#00253A] border-[#C8DEF9] w-full h-32 placeholder-blue-300 text-xs rounded-sm border p-2 focus:outline-none focus:border-blue-200 focus:ring focus:ring-blue-200 focus:ring-opacity-20" |
|
|
|
|
></textarea> |
|
|
|
|
</form> |
|
|
|
|
</div> |
|
|
|
|