$
{typeof product.Price === "number"
? product.Price.toFixed(2)
@@ -416,7 +416,7 @@ const ProductDetail = () => {
@@ -428,7 +428,7 @@ const ProductDetail = () => {
href={`tel:${product.SellerPhone}`}
className="flex items-center gap-2 p-3 hover:bg-gray-50 border-b border-gray-100"
>
-
+
Call Seller
)}
@@ -438,7 +438,7 @@ const ProductDetail = () => {
href={`mailto:${product.SellerEmail}`}
className="flex items-center gap-2 p-3 hover:bg-gray-50"
>
-
+
Email Seller
)}
@@ -475,7 +475,7 @@ const ProductDetail = () => {
{loading.reviews ? (
) : error.reviews ? (
@@ -522,7 +522,7 @@ const ProductDetail = () => {
@@ -580,7 +580,7 @@ const ProductDetail = () => {
id="comment"
value={reviewForm.comment}
onChange={handleReviewInputChange}
- className="w-full p-3 border border-gray-300 focus:outline-none focus:border-green-500"
+ className="w-full p-3 border border-gray-300 focus:outline-none focus:border-emerald-500"
rows="4"
required
>
@@ -596,7 +596,7 @@ const ProductDetail = () => {
@@ -291,7 +291,7 @@ const Settings = () => {
id="email"
value={userData.email}
onChange={handleInputChange}
- className="w-full p-2 border border-gray-300 focus:outline-none focus:border-green-500"
+ className="w-full p-2 border border-gray-300 focus:outline-none focus:border-emerald-500"
required
readOnly // Email is often used as identifier and not changeable
/>
@@ -309,7 +309,7 @@ const Settings = () => {
id="phone"
value={userData.phone}
onChange={handleInputChange}
- className="w-full p-2 border border-gray-300 focus:outline-none focus:border-green-500"
+ className="w-full p-2 border border-gray-300 focus:outline-none focus:border-emerald-500"
/>
@@ -325,7 +325,7 @@ const Settings = () => {
id="UCID"
value={userData.UCID}
onChange={handleInputChange}
- className="w-full p-2 border border-gray-300 focus:outline-none focus:border-green-500"
+ className="w-full p-2 border border-gray-300 focus:outline-none focus:border-emerald-500"
required
/>
@@ -342,14 +342,14 @@ const Settings = () => {
id="address"
value={userData.address}
onChange={handleInputChange}
- className="w-full p-2 border border-gray-300 focus:outline-none focus:border-green-500"
+ className="w-full p-2 border border-gray-300 focus:outline-none focus:border-emerald-500"
/>