fix arrow background color

This commit is contained in:
2025-11-26 23:27:13 +03:00
parent db8dd1df43
commit 8bcea1682e
2 changed files with 5 additions and 4 deletions

View File

@@ -97,8 +97,8 @@
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
background: rgba(255, 255, 255, 0.95); background: var(--background);
border: 1px solid rgba(0, 0, 0, 0.1); border: 1px solid var(--border);
border-radius: 50%; border-radius: 50%;
width: 30px; width: 30px;
height: 30px; height: 30px;
@@ -109,7 +109,7 @@
} }
.arrowButton:hover { .arrowButton:hover {
background: rgba(255, 255, 255, 1); background: var(--background);
transform: scale(1.05); transform: scale(1.05);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
} }
@@ -127,6 +127,7 @@
width: 24px; width: 24px;
height: 24px; height: 24px;
transition: transform 0.2s ease; transition: transform 0.2s ease;
padding: 3px;
} }
.arrowButton:hover .arrowIcon { .arrowButton:hover .arrowIcon {

View File

@@ -321,7 +321,7 @@ export interface CartItem {
image: string; image: string;
quantity: number; quantity: number;
description: string; description: string;
variant?: Variant; variant?: Variant | string;
extras?: Extra[]; extras?: Extra[];
extrasgroupnew?: Array<{ groupid: string; extrasid: Array<string> }>; extrasgroupnew?: Array<{ groupid: string; extrasid: Array<string> }>;
extrasgroup?: Array<string>; extrasgroup?: Array<string>;