Finish move from index to terminal

This commit is contained in:
2022-09-30 19:38:25 +02:00
parent 995cfc5aea
commit a7cc473f53
18 changed files with 21 additions and 14 deletions

View File

@@ -0,0 +1,18 @@
.container {
overflow-y: auto;
display: flex;
flex-direction: column;
flex-grow: 2;
}
.container::-webkit-scrollbar {
width:auto;
}
.container::-webkit-scrollbar-track {
background:rgb(0, 0, 0);
}
.container::-webkit-scrollbar-thumb {
background: var(--repl-color);
}