UI progress

This commit is contained in:
momo5502
2025-04-28 21:02:13 +02:00
parent c2916cde59
commit 312c8aeeaf
4 changed files with 64 additions and 21 deletions

View File

@@ -4,35 +4,44 @@ html {
@media (pointer: fine) {
::-webkit-scrollbar {
width: 20px;
width: 14px;
height: 14px;
}
::-webkit-scrollbar-track {
background-color: transparent;
background: transparent;
}
::-webkit-scrollbar-thumb {
background-color: rgba(97, 97, 97, 0.7);
border-radius: 20px;
min-height: 50px;
border: 6px solid transparent;
border: 4px solid transparent;
background-clip: content-box;
transition: all 0.1s linear;
min-height: 50px;
}
::-webkit-scrollbar-thumb:hover {
background-color: rgba(97, 97, 97, 0.9);
}
::-webkit-scrollbar-corner {
background: transparent;
}
}
button {
cursor: pointer;
}
.resizable-cell,
.terminal-output span {
padding: 4px;
}
.terminal-output {
line-height: 1.5;
font-weight: 600;
font-size: 1.05em;
font-size: 1.0em;
font-family: monospace;
height: 100%;
}