Add scroll bar to make it obvious

This commit is contained in:
Joe 2024-10-21 00:57:15 -07:00
parent b164084c0c
commit 8f09aced83
1 changed files with 3 additions and 2 deletions

View File

@ -2090,12 +2090,14 @@ async function buttonsCallback(args, text) {
overflow-y: auto;
flex-shrink: 1;
min-height: 0;
scrollbar-width: thin;
scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}
.scrollable-buttons::-webkit-scrollbar {
width: 6px;
}
.scrollable-buttons::-webkit-scrollbar-thumb {
background-color: rgba(0, 0, 0, 0.2);
background-color: rgba(255, 255, 255, 0.3);
border-radius: 3px;
}
`;
@ -4304,4 +4306,3 @@ sendTextarea.addEventListener('input', () => {
sendTextarea.style.fontFamily = null;
}
});