footer and first desktop version completed

This commit is contained in:
hamid zarghami
2026-07-19 16:09:33 +03:30
parent 2c9b43c84a
commit 2adaac8ec4
12 changed files with 275 additions and 7 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ const Input: FC<Props> = (props) => {
<input
type={variant === "search" ? "search" : "text"}
className={cn(
"h-12 w-full rounded-2xl border border-secondary bg-white px-5 text-right text-sm text-[#3A4147] placeholder:text-[#D7E0E8] transition-colors focus:border-primary",
"h-10 w-full rounded-2xl border border-secondary bg-white px-5 text-right text-sm text-[#3A4147] placeholder:text-[#D7E0E8] transition-colors focus:border-primary",
variant === "search" && "pr-13",
className,
)}