chat: no display on mobile/small screen

This commit is contained in:
Kyle Drake 2024-04-01 13:58:42 -05:00
parent d57e33d951
commit 86f40a431d

View file

@ -2297,11 +2297,19 @@ pre, code {
.left-col {
padding: 1rem;
overflow-y: scroll;
@media (max-device-width:480px), screen and (max-width:800px) {
width: 100% !important;
}
}
.right-col {
padding: 1rem;
position: relative;
@media (max-device-width:480px), screen and (max-width:800px) {
display: none;
}
}
.chat-container {