Files
web-menu-react-version-/src/pages/menu/components/CartButton/CartButton.module.css
Mohammed Al-yaseen 03a945c929 fixes
- apply fixed height for footer buttons over app
- add floating cart button in cart page in desktop size
2025-10-07 05:01:24 +03:00

24 lines
616 B
CSS

/* Scroll to Top Button */
.scrollToTopButton {
animation: fadeInUp 0.3s ease-out;
transition: all 0.3s ease;
}
.scrollToTopButton:hover {
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2) !important;
}
/* Dark theme scroll to top button */
:global(.darkApp) .scrollToTopButton {
background-color: var(--primary) !important;
border-color: var(--primary) !important;
color: #000000 !important;
}
:global(.darkApp) .scrollToTopButton:hover {
background-color: #ffd633 !important;
border-color: #ffd633 !important;
box-shadow: 0 6px 16px rgba(255, 198, 0, 0.3) !important;
}