fix: Show price scale controls on mobile devices
This commit is contained in:
@ -199,3 +199,21 @@ body {
|
|||||||
--tv-hover: #252f3f;
|
--tv-hover: #252f3f;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* 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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user