From 2a9d5b393e01dbdeda6767e5040d3f6977922205 Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Sat, 13 Jul 2024 09:02:35 -0700 Subject: [PATCH] Use default styling for lists. --- web/static/style.css | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/web/static/style.css b/web/static/style.css index dc02881..7afb966 100644 --- a/web/static/style.css +++ b/web/static/style.css @@ -30,7 +30,7 @@ white-space: nowrap; } -.body { +.message .body { background: white; color: black; margin-top: 0.5em; @@ -48,6 +48,18 @@ margin: 0.5rem 0; } +.message .body blockquote { + padding-left: 1em; + border-left: 2px solid #ddd; +} + +.message .body ul, +.message .body ol, +.message .body li { + margin: revert; + padding: revert; +} + .error { background-color: red; } @@ -238,11 +250,6 @@ display: none; } */ -blockquote { - padding-left: 1em; - border-left: 2px solid #ddd; -} - .desktop .main-content { display: grid; grid-template-columns: 12rem 1fr;