From 69ecaa3b8b8bf0de4fa2449f0ee9005c98e5f60f Mon Sep 17 00:00:00 2001 From: filifa Date: Tue, 6 Jan 2026 22:34:21 -0500 Subject: [PATCH] only float if wide enough --- styles/about.css | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/styles/about.css b/styles/about.css index 57c71b2..4325ab6 100644 --- a/styles/about.css +++ b/styles/about.css @@ -4,9 +4,14 @@ max-width: 100%; margin-right: 1rem; margin-bottom: 1rem; - float: left; } -.cleared { - clear: left; +@media screen and (min-width: 512px) { + #aboutimg { + float: left; + } + + .cleared { + clear: left; + } }