Add scroll bar to make it obvious

8f09aced83ab44088bb28ec81941136562fbfce2

Joe <joenunezb@gmail.com>

1 files changed, +3 -2Showing whitespace changes
public/scripts/slash-commands.js+3 -2
@@ -2090,12 +2090,14 @@ async function buttonsCallback(args, text) {
2090 overflow-y: auto;2090 overflow-y: auto;
2091 flex-shrink: 1;2091 flex-shrink: 1;
2092 min-height: 0;2092 min-height: 0;
2093 scrollbar-width: thin;
2094 scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
2093 }2095 }
2094 .scrollable-buttons::-webkit-scrollbar {2096 .scrollable-buttons::-webkit-scrollbar {
2095 width: 6px;2097 width: 6px;
2096 }2098 }
2097 .scrollable-buttons::-webkit-scrollbar-thumb {2099 .scrollable-buttons::-webkit-scrollbar-thumb {
2098 background-color: rgba(0, 0, 0, 0.2);2100 background-color: rgba(255, 255, 255, 0.3);
2099 border-radius: 3px;2101 border-radius: 3px;
2100 }2102 }
2101 `;2103 `;
@@ -4304,4 +4306,3 @@ sendTextarea.addEventListener('input', () => {
4304 sendTextarea.style.fontFamily = null;4306 sendTextarea.style.fontFamily = null;
4305 }4307 }
4306});4308});
4307