fix(layout): allow images up to 300x300 in services page contents

This commit is contained in:
2026-06-30 20:14:17 -07:00
parent a39caf1a34
commit a3f7f90fdc
+1 -1
View File
@@ -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%; }