From b2c6706c40fe49940e59f9b71e52c2d2d18c3d57 Mon Sep 17 00:00:00 2001
From: =?utf8?q?Paul=20H=C3=A4nsch?= <paul@plutz.net>
Date: Mon, 9 Oct 2023 12:17:36 +0200
Subject: [PATCH] prevent left/right floating inside floated containers

---
 themes/default.css | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/themes/default.css b/themes/default.css
index 597a1a9..4508104 100644
--- a/themes/default.css
+++ b/themes/default.css
@@ -198,6 +198,13 @@ table {
     width: 33%;
     margin: .25em 1em .5em 0;
   }
+  .left .left, .left .right,
+  .right .left, .right .right,
+  .half .left, .half .right {
+    float: none;
+    width: 100%;
+    margin: .25em 0 .5em 0;
+  }
   section.left  > :first-child,
   section.right > :first-child {
     float: none;
-- 
2.39.5