Just made a custom scrollbar

This commit is contained in:
AlphaXexia 2023-03-11 12:32:15 +08:00
parent 8770a49800
commit bdd3b90aa9

View file

@ -29,6 +29,23 @@
height: 100%;
background: #25294a;
}
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
background-color: #25294a;
}
::-webkit-scrollbar-thumb {
background-color: #2c3e50;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background-color: #34495e;
}
</style>
%sveltekit.head%