From 1adfa39cfd0222187b5460ae9a15599a39ea15ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?s=C3=B8renpeter?= Date: Thu, 12 Dec 2024 15:37:16 +0100 Subject: [PATCH] fix pre-code overflow --- libs/timeline.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libs/timeline.css b/libs/timeline.css index 99afc17..520a2b0 100644 --- a/libs/timeline.css +++ b/libs/timeline.css @@ -268,12 +268,13 @@ article { article.post-entry { display: grid; grid-gap: 1rem; - grid-template-columns: 2.5rem auto; +/* grid-template-columns: 2.5rem auto;*/ + grid-template-columns: 2.5rem minmax(min(50vw, 30ch), 1fr); } article .twt-msg { padding: 0.5rem 0.5rem 0.5rem 0 ; - overflow-wrap: anywhere; +/* overflow-wrap: anywhere; */ } article .twt-msg p { @@ -324,6 +325,7 @@ article .embed-video { border-radius: 0.25rem; } + article small { font-size: small; }