Client has been renamed to launcher, and thus namespaces and artifact names had to change. The server project has also had some artifacts renamed in order to create a more clear separation of builds. This will break auto-updates before v0.9.0.
27 lines
No EOL
476 B
SCSS
27 lines
No EOL
476 B
SCSS
*:hover::-webkit-scrollbar {
|
|
opacity: 1;
|
|
}
|
|
|
|
*::-webkit-scrollbar {
|
|
width: 6px;
|
|
opacity: 0;
|
|
transition: opacity .1s;
|
|
}
|
|
|
|
*::-webkit-scrollbar-track {
|
|
background-color: #141414;
|
|
border: none;
|
|
}
|
|
|
|
*::-webkit-scrollbar-thumb {
|
|
background-color: rgba(255, 255, 255, 0);
|
|
transition: background-color linear .1s;
|
|
}
|
|
|
|
*:hover::-webkit-scrollbar-thumb {
|
|
background-color: rgba(255, 255, 255, 1);
|
|
}
|
|
|
|
.no-scrollbar::-webkit-scrollbar {
|
|
width: 0;
|
|
} |