Skip to content
Draft
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
16 changes: 16 additions & 0 deletions src/WebApp/Components/Pages/Cart/CartPage.razor.css
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,22 @@
margin-left: auto;
}

/* Price styling for cart page */
.cart .price {
color: #ff99ff;
font-weight: 600;
}

.cart-items .catalog-item-total {
color: #ff99ff;
font-weight: 600;
}

.cart-summary-total div:last-child {
color: #ff99ff;
font-weight: 600;
}

@media only screen and (max-width: 480px) {
.cart {
padding: 0 1rem;
Expand Down
1 change: 1 addition & 0 deletions src/WebApp/Components/Pages/Item/ItemPage.razor.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ img {
.price {
font-size: 1.6rem;
font-weight: 600;
color: #ff99ff;
}

.add-to-cart button {
Expand Down
2 changes: 1 addition & 1 deletion src/WebAppComponents/Catalog/CatalogListItem.razor.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
}

.catalog-product-content .price {
color: #444;
color: #ff99ff;
text-align: right;
font-size: 1rem;
font-style: normal;
Expand Down