mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-28 10:18:51 +00:00
Charts library could be better, I did not find a way to configure time-series min/max value or step, formatting Y axis is not trivial too, but for an early feature this should do the job: <img width="1728" alt="Screenshot 2023-09-27 at 20 00 10" src="https://github.com/firezone/firezone/assets/1877644/8e4bef6b-2937-4dc2-ac31-3c61e31bffc6">
29 lines
579 B
CSS
29 lines
579 B
CSS
@layer utilities {
|
|
.no-scrollbar::-webkit-scrollbar {
|
|
display: block;
|
|
height: 0px;
|
|
background-color: initial;
|
|
border-radius: 10px;
|
|
transition: all 2s linear;
|
|
}
|
|
|
|
.no-scrollbar:hover::-webkit-scrollbar {
|
|
height: .5rem;
|
|
}
|
|
|
|
.no-scrollbar {
|
|
-ms-overflow-style: none;
|
|
scrollbar-width: none;
|
|
}
|
|
|
|
.no-scrollbar::-webkit-scrollbar-thumb {
|
|
background-color: rgb(228 228 231/var(--tw-bg-opacity));
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.no-scrollbar::-webkit-scrollbar-track {
|
|
background-color: rgb(249 250 251);
|
|
border-radius: 5px;
|
|
}
|
|
}
|