Is there any fix or workaround about the scroll bar not being available to view chats on project folders
With ChatGPT, I just found this solution which added the scroll bar for me (Windows 11, Edge):
Installed Edge browser extension “Stylus” (google for “install stylus for edge“)
Open Stylus, at “Style Manager” I added a “New Stylesheet” with the following URL Pattern:
^https:\/\/chatgpt\.com\/.*
Then I added the following code:
`/* Force scrollbar to be visible inside chat column */ [data-scroll-root] { scrollbar-width: auto !important; -ms-overflow-style: auto !important; }
/* Edge / Chromium scrollbar */ [data-scroll-root]::-webkit-scrollbar { width: 12px !important; display: block !important; }
[data-scroll-root]::-webkit-scrollbar-thumb { background-color: rgba(120,120,120,0.6) !important; border-radius: 6px !important; }`
I spent two hours on finding this solution with ChatGPT I hope this helps someone
Discussion in the ATmosphere