Skip to content

Commit 0abffdf

Browse files
authored
Merge pull request #1449 from w3bdesign/develop
Product title size
2 parents d587433 + b2faf74 commit 0abffdf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/components/Product/DisplayProducts.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ const DisplayProducts = ({ products }: IDisplayProductsProps) => (
100100
<Link href={`/produkt/${encodeURIComponent(slug)}`}>
101101
<span>
102102
<div className="mt-4">
103-
<p className="text-2xl font-bold text-center cursor-pointer hover:text-gray-600 transition-colors">
103+
<p className="text-xl font-bold text-center cursor-pointer hover:text-gray-600 transition-colors">
104104
{name}
105105
</p>
106106
</div>

src/components/Product/SingleProduct.component.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const SingleProduct = ({ product }: IProductRootObject) => {
5050
<section className="bg-white mb-[8rem] md:mb-12">
5151
{isLoading ? (
5252
<div className="h-56 mt-20">
53-
<p className="text-2xl font-bold text-center">Laster produkt ...</p>
53+
<p className="text-xl font-bold text-center">Laster produkt ...</p>
5454
<br />
5555
<LoadingSpinner />
5656
</div>
@@ -83,7 +83,7 @@ const SingleProduct = ({ product }: IProductRootObject) => {
8383
<div className="text-center md:text-left mb-6">
8484
{onSale ? (
8585
<div className="flex flex-col md:flex-row items-center md:items-start gap-2">
86-
<p className="text-2xl font-bold text-red-600">
86+
<p className="text-xl font-bold text-red-600">
8787
{product.variations
8888
? filteredVariantPrice(price, '')
8989
: salePrice}
@@ -95,7 +95,7 @@ const SingleProduct = ({ product }: IProductRootObject) => {
9595
</p>
9696
</div>
9797
) : (
98-
<p className="text-2xl font-bold">{price}</p>
98+
<p className="text-xl font-bold">{price}</p>
9999
)}
100100
</div>
101101

0 commit comments

Comments
 (0)