Skip to content

Commit

Permalink
Improve scrollbar visibility for ApexCharts in dark and light layouts
Browse files Browse the repository at this point in the history
  • Loading branch information
XK4MiLX committed Oct 19, 2024
1 parent 064fa6b commit ad7baa4
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions HomeUI/src/views/dashboard/Map.vue
Original file line number Diff line number Diff line change
Expand Up @@ -273,4 +273,15 @@ export default {
.dark-layout span.apexcharts-legend-text {
color: #d0d2d6 !important;
}
.dark-layout .apexcharts-canvas ::-webkit-scrollbar-track {
background-color: #2a2a2a;
border-radius: 10px;
}
.dark-layout .apexcharts-canvas ::-webkit-scrollbar-thumb {
background-color: #888888;
}
.apexcharts-canvas ::-webkit-scrollbar-track {
background-color: #888888;
border-radius: 10px;
}
</style>

0 comments on commit ad7baa4

Please sign in to comment.