From 5be3d02be3cddbbf4e090b3914c80bd7dadcfb5d Mon Sep 17 00:00:00 2001 From: Ricardo Date: Sat, 24 Jan 2026 20:36:55 +0100 Subject: [PATCH] fix: prevent overflow on mobile in featured repos commits list Add overflow-hidden and min-w-0 to fix truncation issues on mobile. Co-Authored-By: Claude Opus 4.5 --- github.njk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/github.njk b/github.njk index 890e832..3d4dee5 100644 --- a/github.njk +++ b/github.njk @@ -67,17 +67,17 @@ withSidebar: true {% if repo.commits and repo.commits.length %} -
+
Recent commits ({{ repo.commits.length }}) -
    +
      {% for commit in repo.commits %} -
    • +
    • {{ commit.sha }} - {{ commit.message }} + {{ commit.message }}
    • {% endfor %}