feat(product-card): update title color for better visibility and readability

feat(quantity-selector): change background to inherit for consistent styling
This commit is contained in:
2026-07-17 13:45:16 -03:00
parent 40cc2b840d
commit 9a4e2a03e9
4 changed files with 7 additions and 7 deletions

View File

@@ -1,7 +1,7 @@
<div class="product-row-card border rounded bg-white shadow-sm d-flex justify-content-between p-3 gap-3">
<!-- Left Side: Title and Description -->
<div class="product-row-card__info d-flex flex-column justify-content-center flex-grow-1">
<h3 class="product-row-card__title text-uppercase text-black mb-1 m-0">
<h3 class="product-row-card__title text-uppercase mb-1 m-0">
{{ title() }}
</h3>
@if (description()) {

View File

@@ -11,7 +11,7 @@
&__title {
font-size: 16px;
font-weight: 700;
color: #555; /* dark grey matching screenshot */
color: #666666;
letter-spacing: 0.5px;
}