From f78b6dceae0b85144bb55af1d361f44db946cb5d Mon Sep 17 00:00:00 2001 From: ygg2 Date: Thu, 11 Jul 2024 08:19:59 -0400 Subject: [PATCH] adjust quote so lines merge on multiline --- webpage/style.css | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/webpage/style.css b/webpage/style.css index 734c41b..a84c772 100644 --- a/webpage/style.css +++ b/webpage/style.css @@ -857,18 +857,22 @@ input[type="checkbox"] { .quote { display: inline-block; - width: fit-content; + position: relative; } .quoteline { - display: inline-block; width: .02in; - height: .15in; - margin-left: .02in; - margin-right: .04in; + height: 100%; + position: absolute; background-color: var(--quote-bg); } +.quote > span { + margin-left: 0.5em; + display: flex; + align-items: center; +} + span { word-wrap: break-word; word-break: break-word;