From f72894f4377873f25ef65d71c6396afcbf66eadb Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Wed, 25 Feb 2026 14:38:17 -0600 Subject: [PATCH] add a class for forcing something full width using this for the occasional figure that I want to be full width but also have the caption stuff, since the default (that I use often) is figures are 30% Signed-off-by: Brian S. Stephan --- incorporealcms/static/css/base.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/incorporealcms/static/css/base.css b/incorporealcms/static/css/base.css index a1144e7..58c4608 100644 --- a/incorporealcms/static/css/base.css +++ b/incorporealcms/static/css/base.css @@ -116,6 +116,10 @@ img { max-width: 75% !important; } +.full-width { + max-width: 100%; +} + .img-center { display: block; clear: both;