From a3f7f90fdcb6da996a4792f4392bf0809de81f73 Mon Sep 17 00:00:00 2001 From: Jeffrey Hales Date: Tue, 30 Jun 2026 20:14:17 -0700 Subject: [PATCH] fix(layout): allow images up to 300x300 in services page contents --- www/src/styles/pages.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/src/styles/pages.css b/www/src/styles/pages.css index c879ac5..cebeee0 100644 --- a/www/src/styles/pages.css +++ b/www/src/styles/pages.css @@ -1,4 +1,4 @@ -.service-page > p > img, .service-page > img { float: right; margin: .5rem 0 0 2rem; max-height: 230px; max-width: 300px; object-fit: cover; } +.service-page > p > img, .service-page > img { float: right; margin: .5rem 0 0 2rem; max-height: 300px; max-width: 300px; object-fit: cover; } .service-page h3 { font-size: 2rem; } @media (max-width: 700px) { .service-page > p > img, .service-page > img { float: none; margin: 1.5rem 0; max-width: 100%; width: 100%; }