fix CSS bug

This commit is contained in:
MathMan05
2024-08-11 22:26:14 -05:00
parent 8aecc632e6
commit 77fb22c0d2

View File

@@ -227,13 +227,18 @@ h2 {
overflow: auto; overflow: auto;
flex-shrink: 0; flex-shrink: 0;
background: var(--server-list); background: var(--server-list);
overflow-y: scroll;
scrollbar-width: none;
}
#neunence::-webkit-scrollbar, #neunence::-webkit-scrollbar-button {
display: none;
} }
#servers { #servers {
vertical-align: top; vertical-align: top;
height: calc(100dvh - .07in); height: calc(100dvh - .07in);
margin: 0.05in .05in .02in .05in; margin: 0.05in .05in .02in .05in;
width: .5in; width: .5in;
max-width: .5in;
} }
#servers::-webkit-scrollbar { #servers::-webkit-scrollbar {
@@ -1687,3 +1692,6 @@ form div{
z-index:5; z-index:5;
background: var(--server-name-bg); background: var(--server-name-bg);
} }
.titlespace{
padding:.1in 0 0 .1in
}