For a chat application, I want to have a scroll-able message list. It works in Chrome / Chromium, but not in Firefox. The problem seems related to flexbug #1 and has been asked & addressed often enough here on SO. However, despite trying min-height:0
on all parents as suggested here and elsewhere, the problem remains.
One quick fix is to remove display:flex
from .bot-message-list
. But doing so results in messages starting to appear on top of the list, instead of at the bottom as is intended.
So the question is: what can I change in order to make the message list scroll-able on all browsers while having the initial messages starting to populate at the bottom of the list.
Any pointers are very much appreciated!