cart: move "you may like" styles

This commit is contained in:
2025-10-08 19:50:57 +03:00
parent 24fb914b11
commit edb951b7ff
3 changed files with 75 additions and 55 deletions

View File

@@ -19,18 +19,7 @@
justify-content: space-between; justify-content: space-between;
} }
.youMightAlsoLikeContainer {
display: flex;
flex-direction: row;
justify-content: space-between;
width: 100%;
overflow: auto;
scrollbar-width: none;
}
:global(.darkApp) .youMightAlsoLikeContainer path {
fill: var(--primary);
}
.cartContent { .cartContent {
width: 100%; width: 100%;
@@ -68,37 +57,6 @@
transform: scale(1.05); transform: scale(1.05);
} }
.popularMenuItemImage {
width: 73px;
height: 73px;
object-fit: cover;
border-radius: 8px;
transition: transform 0.3s ease;
}
.popularMenuItemImage:hover {
transform: scale(1.05);
}
.popularMenuItemImageMobile {
width: 73px;
height: 73px;
min-height: 73px;
object-fit: cover;
}
.popularMenuItemImageTablet {
width: 90px;
height: 90px;
border-radius: 12px;
}
.popularMenuItemImageDesktop {
width: 110px;
height: 110px;
border-radius: 16px;
}
.itemDescription { .itemDescription {
font-size: 12px !important; font-size: 12px !important;
transition: color 0.3s ease; transition: color 0.3s ease;
@@ -388,8 +346,7 @@
box-shadow: 0 0 0 0 !important; box-shadow: 0 0 0 0 !important;
} }
[data-theme="dark"] .menuItemImage, [data-theme="dark"] .menuItemImage{
[data-theme="dark"] .popularMenuItemImage {
border-color: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.1);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
} }
@@ -398,10 +355,7 @@
color: rgba(255, 255, 255, 0.75) !important; color: rgba(255, 255, 255, 0.75) !important;
} }
.itemDescriptionIcons svg {
width: 18px;
height: 18px;
}
/* Keyframe animations */ /* Keyframe animations */
@keyframes fadeInUp { @keyframes fadeInUp {
@@ -556,8 +510,7 @@
/* Large screens (min-width: 768px) */ /* Large screens (min-width: 768px) */
@media (min-width: 768px) { @media (min-width: 768px) {
.cartContainer:focus, .cartContainer:focus,
.menuItemImage:focus, .menuItemImage:focus{
.popularMenuItemImage:focus {
outline-offset: 4px; outline-offset: 4px;
} }
@@ -646,8 +599,7 @@
/* Hover effects for devices that support hover */ /* Hover effects for devices that support hover */
@media (hover: hover) { @media (hover: hover) {
.menuItemImage:hover, .menuItemImage:hover {
.popularMenuItemImage:hover {
transform: scale(1.05); transform: scale(1.05);
} }
@@ -681,8 +633,7 @@
/* Focus states for accessibility */ /* Focus states for accessibility */
.cartContainer:focus, .cartContainer:focus,
.menuItemImage:focus, .menuItemImage:focus {
.popularMenuItemImage:focus {
outline: 2px solid var(--primary); outline: 2px solid var(--primary);
outline-offset: 2px; outline-offset: 2px;
} }

View File

@@ -0,0 +1,69 @@
.youMightAlsoLikeContainer {
display: flex;
flex-direction: row;
justify-content: space-between;
width: 100%;
overflow: auto;
scrollbar-width: none;
}
:global(.darkApp) .youMightAlsoLikeContainer path {
fill: var(--primary);
}
.popularMenuItemImage {
width: 73px;
height: 73px;
object-fit: cover;
border-radius: 8px;
transition: transform 0.3s ease;
}
.popularMenuItemImage:hover {
transform: scale(1.05);
}
.popularMenuItemImageMobile {
width: 73px;
height: 73px;
min-height: 73px;
object-fit: cover;
}
.popularMenuItemImageTablet {
width: 90px;
height: 90px;
border-radius: 12px;
}
.popularMenuItemImageDesktop {
width: 110px;
height: 110px;
border-radius: 16px;
}
[data-theme="dark"] .popularMenuItemImage {
border-color: rgba(255, 255, 255, 0.1);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
.popularMenuItemImage:focus {
outline-offset: 4px;
}
}
/* Hover effects for devices that support hover */
@media (hover: hover) {
.popularMenuItemImage:hover {
transform: scale(1.05);
}
}
/* Focus states for accessibility */
.popularMenuItemImage:focus {
outline: 2px solid var(--primary);
outline-offset: 2px;
}
.itemDescriptionIcons svg {
width: 18px;
height: 18px;
}

View File

@@ -11,7 +11,7 @@ import { useAppDispatch, useAppSelector } from "redux/hooks.ts";
import { colors } from "ThemeConstants.ts"; import { colors } from "ThemeConstants.ts";
import { default_image } from "utils/constants.ts"; import { default_image } from "utils/constants.ts";
import { Product } from "utils/types/appTypes.ts"; import { Product } from "utils/types/appTypes.ts";
import styles from "pages/cart/cart.module.css"; import styles from "./YouMayAlsoLike.module.css";
const { useBreakpoint } = Grid; const { useBreakpoint } = Grid;