fix: Show price scale controls on mobile
This commit is contained in:
@ -211,3 +211,21 @@ body {
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user