I am making a basic chatting app. The information of the person you are texting is on the top of the screen
.rectangle-section {
position: fixed;
width: 100%;
top: 0;
right: 0;
left: 0;
background-color: #1e1e1e;
height: 100px;
}
I also have a few messages visible on the screen. I want to make it so that when the person is scrolling up, the messages dont appear above the information about the person you are messaging like this. How do I do that?