From 24cd378c9d8f857f4f28af1069a2f5523a6441d8 Mon Sep 17 00:00:00 2001 From: retoor Date: Mon, 17 Feb 2025 19:21:03 +0100 Subject: [PATCH] Scroll infinite. --- src/snek/static/base.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/snek/static/base.css b/src/snek/static/base.css index 83ae235..9e5a02b 100644 --- a/src/snek/static/base.css +++ b/src/snek/static/base.css @@ -102,10 +102,15 @@ a { .chat-messages { flex: 1; overflow-y: auto; + scrollbar-width: none; + -ms-overflow-style: none; padding: 10px; height: 200px; background: #1a1a1a; } +.chat-messages::-webkit-scrollbar { + display: none; +} .chat-messages .message { display: flex;