Scrolling new chats up?

I saw THIS question, and it has me wondering if there’s any way to slide the chat up from the bottom.

I tried this code and it doesn’t seem to work.

.chat_line {
    animation: slide-up 0.4s ease;
}

@keyframes slide-up {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

This is probably not easily doable because we auto-scroll you to the bottom, negating any sort of animation into frame with sliding.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.