From 356a9139a6e028ad249c5840820f3e56b75c421e Mon Sep 17 00:00:00 2001 From: ch0ccyra1n <ch0ccyra1n@riseup.net> Date: Tue, 30 Aug 2022 21:06:37 -0700 Subject: [PATCH] fix issue where images don't resize properly --- static/css/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/static/css/style.css b/static/css/style.css index 01279e0..9f2e8cb 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -34,6 +34,11 @@ body { justify-content: center; } +img { + max-width: 100%; + max-height: 100%; +} + header h1 { text-align: center; }