mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 18:42:49 +00:00
43 lines
747 B
CSS
43 lines
747 B
CSS
@import "tailwindcss";
|
|
|
|
@custom-variant dark (&:where(.dark, .dark *));
|
|
|
|
* {
|
|
scrollbar-width: thin;
|
|
scrollbar-color: rgb(203 213 225 / 0.6) transparent;
|
|
}
|
|
|
|
*::-webkit-scrollbar {
|
|
width: 8px;
|
|
height: 10px;
|
|
}
|
|
|
|
*::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
|
|
*::-webkit-scrollbar-thumb {
|
|
background-color: rgb(203 213 225 / 0.7);
|
|
border-radius: 9999px;
|
|
}
|
|
|
|
*::-webkit-scrollbar-thumb:hover {
|
|
background-color: rgb(51 87 141 / 0.5);
|
|
}
|
|
|
|
*::-webkit-scrollbar-corner {
|
|
background: transparent;
|
|
}
|
|
|
|
.dark * {
|
|
scrollbar-color: rgb(71 85 105 / 0.6) transparent;
|
|
}
|
|
|
|
.dark *::-webkit-scrollbar-thumb {
|
|
background-color: rgb(71 85 105 / 0.6);
|
|
}
|
|
|
|
.dark *::-webkit-scrollbar-thumb:hover {
|
|
background-color: rgb(51 87 141 / 0.7);
|
|
}
|