More design updates

This commit is contained in:
okbel 2021-06-01 09:46:48 -03:00
parent 85d00ca305
commit 68e0bfc735
3 changed files with 3 additions and 3 deletions

View File

@ -126,7 +126,7 @@ const CartSidebarView: FC = () => {
<span className="font-bold tracking-wide">FREE</span> <span className="font-bold tracking-wide">FREE</span>
</li> </li>
</ul> </ul>
<div className="flex justify-between border-t border-accent-3 py-3 font-bold mb-2"> <div className="flex justify-between border-t border-accent-2 py-3 font-bold mb-2">
<span>Total</span> <span>Total</span>
<span>{total}</span> <span>{total}</span>
</div> </div>

View File

@ -180,7 +180,7 @@ const ProductView: FC<Props> = ({ product, relatedProducts }) => {
<Text variant="sectionHeading">Related Products</Text> <Text variant="sectionHeading">Related Products</Text>
<div className="grid grid-cols-4 py-3 gap-10"> <div className="grid grid-cols-4 py-3 gap-10">
{relatedProducts.map((p) => ( {relatedProducts.map((p) => (
<div className="animated fadeIn bg-accent-0 border border-accent-3"> <div className="animated fadeIn bg-accent-0 border border-accent-2">
<ProductCard <ProductCard
variant="simple" variant="simple"
key={p.path} key={p.path}

View File

@ -11,5 +11,5 @@
} }
.sectionHeading { .sectionHeading {
@apply pt-1 pb-2 font-semibold leading-7 tracking-wider uppercase border-b border-accent-2 mb-3; @apply pt-1 pb-2 text-2xl font-semibold tracking-wide cursor-pointer mb-2;
} }