From 5eb0b2d7369b68b2e7192b07641a1be024382699 Mon Sep 17 00:00:00 2001 From: arne Date: Wed, 26 Nov 2025 08:04:03 +0100 Subject: [PATCH] Handle overflow bars on mobile --- public/index.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/public/index.html b/public/index.html index d3a410c..785aeb8 100644 --- a/public/index.html +++ b/public/index.html @@ -247,6 +247,7 @@ section.posts .post .metadata { display: grid; grid-template-columns: 1fr auto; + grid-gap: 12px; } section.posts .post .metadata .post-info { @@ -258,6 +259,19 @@ color: #777; } + section.posts .post .users { + overflow: hidden; + text-overflow: ellipsis; + } + + section.posts .post .content a .hidden { + display: none; + } + + section.posts .post .content a .ellipsis:after { + conten: "…"; + } + section.posts .post .content p:last-child { margin-bottom: 0 }