fix: Show price scale controls on mobile

This commit is contained in:
DiTus
2026-03-21 07:54:53 +01:00
parent 3bdec3251d
commit dfd40e23e5

View File

@ -211,3 +211,21 @@ body {
display: block !important; display: block !important;
} }
/* Price Scale Controls - make visible on mobile (no hover available) */
#priceScaleControls {
opacity: 0.6;
transition: opacity 0.3s ease;
}
#priceScaleControls:hover {
opacity: 1;
}
/* Ensure controls are visible on touch devices */
@media (hover: none) {
#priceScaleControls {
opacity: 1 !important;
pointer-events: auto;
}
}