From 0a3d8093cbdfe90454d6c9ebc7e4579efd243a98 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Fri, 15 May 2026 22:24:12 -0700 Subject: [PATCH] Feat: Show chat scrollbar only on desktop devices --- src/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/style.css b/src/style.css index dd58b7f..77abf0a 100644 --- a/src/style.css +++ b/src/style.css @@ -1,5 +1,5 @@ @import url(https://fonts.bunny.net/css?family=assistant:500); -:root{--safe-bottom:env(safe-area-inset-bottom)}::-webkit-scrollbar{height:8px;width:8px}::-webkit-scrollbar-thumb{background:#e5e7eb;border-radius:999px}.no-scrollbar::-webkit-scrollbar{display:none}.no-scrollbar{-ms-overflow-style:none;scrollbar-width:none} +:root{--safe-bottom:env(safe-area-inset-bottom)}::-webkit-scrollbar{height:8px;width:8px}::-webkit-scrollbar-thumb{background:#e5e7eb;border-radius:999px}@media(pointer: coarse){.no-scrollbar::-webkit-scrollbar{display:none}.no-scrollbar{-ms-overflow-style:none;scrollbar-width:none}} html,body{overscroll-behavior-y:contain;font-family:'Assistant',sans-serif} .markdown-body{font-size:14px;line-height:1.6}.markdown-body pre{overflow:auto} .markdown-body ul,.markdown-body ol{list-style:revert;padding-left:2em}