frontpage/styles/REPL/REPLComplete.module.css

20 lines
308 B
CSS
Raw Normal View History

2021-12-26 15:16:09 +01:00
.container {
overflow-y: auto;
display: flex;
flex-direction: column;
flex-grow: 2;
2021-12-26 16:58:39 +01:00
}
.container::-webkit-scrollbar {
width:auto;
}
/*track*/
.container::-webkit-scrollbar-track {
background:rgb(0, 0, 0);
}
/*thumb*/
.container::-webkit-scrollbar-thumb {
background:rgb(24, 138, 24);
2021-12-26 15:16:09 +01:00
}