fix product description

This commit is contained in:
moaz_dw 2024-07-07 12:24:24 +03:00
parent 1a73c587c8
commit 174a7b75f5
2 changed files with 2 additions and 2 deletions

View File

@ -78,7 +78,7 @@ const ProductCard = ({ item }: { item: Product }) => {
<div className="ProductCard"> <div className="ProductCard">
<CustomImage src={item?.main_photo} onClick={() => handle_click(item?.base_product_id)} /> <CustomImage src={item?.main_photo} onClick={() => handle_click(item?.base_product_id)} />
<h4 className="truncate-text">{languageObject(item?.name)}</h4> <h4 className="truncate-text">{languageObject(item?.name)}</h4>
<h4 className="desc">Description: {result}</h4> <h5 className="desc">Description: {result}</h5>
{/* <p>{Currency} {oldPrice}</p> {/* <p>{Currency} {oldPrice}</p>
<div> <div>

View File

@ -274,5 +274,5 @@
} }
.desc{ .desc{
font-size: 14px !important; font-size: 14px !important;
min-height: 60px; min-height: 40px;
} }