Removed scroll bars from virt_console

This commit is contained in:
Andrew 2021-08-21 18:51:11 -04:00
parent 6ecf6285b9
commit 0058b6c8cb

View File

@ -80,3 +80,12 @@ body { background-color: var(--dark) !important; /* Firefox */ }
.actions_serverlist > a > i {
cursor: pointer;
}
#virt_console::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
#virt_console {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}