Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/Product/ProductCard.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const ProductCard = ({

<Link href={`/produkt/${slug}`}>
<div className="mt-4">
<p className="text-2xl font-bold text-center cursor-pointer hover:text-gray-600 transition-colors">
<p className="text-xl font-bold text-center cursor-pointer hover:text-gray-600 transition-colors">
{name}
</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Product/SingleProduct.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const SingleProduct = ({ product }: IProductRootObject) => {

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

Expand Down
Loading