From dff9ac503e90ef456371c5a2f7038f85d1f95396 Mon Sep 17 00:00:00 2001 From: biglyderv Date: Mon, 21 Apr 2025 12:45:26 -0400 Subject: [PATCH] slight UI fixes with lists --- index.css | 8 +++++--- index.js | 1 + 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/index.css b/index.css index 97f2874..15333b4 100644 --- a/index.css +++ b/index.css @@ -79,9 +79,11 @@ button a { #messages>li>li { margin: 0; line-height: 1em; - height: 1em; - padding-bottom: 0.1em; - overflow: hidden; + height: 0.8em; + height: 0.9em; + display: flex; + align-items: end; + overflow: visible; } diff --git a/index.js b/index.js index ae6600c..a1303b0 100644 --- a/index.js +++ b/index.js @@ -31,6 +31,7 @@ async function addMsg(msg) { img.src = `arrows/right.svg`; } item.insertBefore(img, item.childNodes[0]) + item.style.fontStyle = 'italic'; } wrap.appendChild(item); }