Not bad, but you won't be able to scroll anymore.
Here is how i did and is also working on mobile (tested on firefox and chrome):
#chatboxWrap {
height: 300px;
overflow-y: auto;
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* IE 10+ */
}
::-webkit-scrollbar {
display: none;
}
#chatboxWrap::-webkit-scrollbar {
display: none;
}