From c41dc839be7dfd9e85a50166d65770fb1038eade Mon Sep 17 00:00:00 2001 From: "Skylar \"The Cobra\" Widulski" Date: Mon, 22 Jan 2024 03:26:55 -0500 Subject: [PATCH] Hopefully fix issue with image being too big Signed-off-by: Skylar "The Cobra" Widulski --- static/css/main.css | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/static/css/main.css b/static/css/main.css index 1aff437..d190965 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -23,7 +23,6 @@ h2 { font-size:1.2em; } h3,.fact_check_info_title { font-size:1.1em; } pre,code { - tab-size:8; background: #20232a; color: #969ba6; border: 1px solid lightgrey; @@ -37,9 +36,9 @@ blockquote { margin-right: 10px; } -#article-content img { +img { display:flex; - max-width:90vw; + max-width: 80vw; height:auto; margin:auto; }