From 0a486204f4239ef14311aa645cf750db9529084d Mon Sep 17 00:00:00 2001 From: Justin Karimi Date: Sun, 24 Jan 2021 22:57:22 -0500 Subject: [PATCH] Left-Align Image Detail Text Update the text in the image details to be left-aligned for better readability. --- templates/webpanel/css/images.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/templates/webpanel/css/images.css b/templates/webpanel/css/images.css index 8578c5b..112f621 100644 --- a/templates/webpanel/css/images.css +++ b/templates/webpanel/css/images.css @@ -8,3 +8,7 @@ div.card-group.capture-image-cards div.image-card img.card-img-top { max-width: 100%; width: unset; } + +div.card-group.capture-image-cards div.image-card p.card-text { + text-align: left; +}