From b8c141cde9554dae3590a15a25b942eb41a0d812 Mon Sep 17 00:00:00 2001 From: copyrighttxt <183881018+copyrighttxt@users.noreply.github.com> Date: Mon, 3 Aug 2026 17:32:42 -0400 Subject: [PATCH] Word? --- app/pages/home/home.html | 2 +- app/static/css/home.css | 16 +++++++++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/app/pages/home/home.html b/app/pages/home/home.html index 49ade5f..5f10e96 100644 --- a/app/pages/home/home.html +++ b/app/pages/home/home.html @@ -42,7 +42,7 @@

Friends ( {{friendcount}} )

-
+
{% for friend in friends %}
diff --git a/app/static/css/home.css b/app/static/css/home.css index 8ea49a5..68b8739 100644 --- a/app/static/css/home.css +++ b/app/static/css/home.css @@ -30,4 +30,18 @@ display: table; margin: 0 auto; -} \ No newline at end of file +} + +.friends-scroll { + overflow-x: auto; + -webkit-overflow-scrolling: touch; + scroll-behavior: smooth; + white-space: nowrap; +} + +.friends-scroll a { + flex: 0 0 auto; +} + +.friends-scroll::-webkit-scrollbar { display: none; } +.friends-scroll { -ms-overflow-style: none; scrollbar-width: none; } \ No newline at end of file