Skip to content

Commit d587433

Browse files
authored
Merge pull request #1448 from w3bdesign/develop
Reduce product title size
2 parents f7416d0 + a3ff20d commit d587433

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/Product/ProductCard.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const ProductCard = ({
5353

5454
<Link href={`/produkt/${slug}`}>
5555
<div className="mt-4">
56-
<p className="text-2xl font-bold text-center cursor-pointer hover:text-gray-600 transition-colors">
56+
<p className="text-xl font-bold text-center cursor-pointer hover:text-gray-600 transition-colors">
5757
{name}
5858
</p>
5959
</div>

src/components/Product/SingleProduct.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ const SingleProduct = ({ product }: IProductRootObject) => {
7575

7676
{/* Product Details Container */}
7777
<div className="flex flex-col">
78-
<h1 className="text-2xl font-bold text-center md:text-left mb-4">
78+
<h1 className="text-xl font-bold text-center md:text-left mb-4">
7979
{name}
8080
</h1>
8181

0 commit comments

Comments
 (0)