When visiting this plunker, I noticed that the id #chat-msgs
shifts downward when hovering over All Conversations on a browser with a width less than 767px. I attempted to use position: absolute
to fix it, but it didn't work as intended.
@media (max-width: 767px) {
#user-list {
display: none;
}
#chat-msgs {
position:absolute;
}
#dropdownMenu2:hover + #user-list, #user-list:hover{
display: block;
}
}