From 044857a36e17139a74d3e437e78d9d41c4e9136f Mon Sep 17 00:00:00 2001 From: forceofcalm Date: Wed, 20 May 2026 01:10:56 -0400 Subject: [PATCH 1/2] added a css3 solution that would not affect css2 layouts --- public/stylesheets/site/2.0/10-types-groups.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/public/stylesheets/site/2.0/10-types-groups.css b/public/stylesheets/site/2.0/10-types-groups.css index 3d6693e9511..a63de4d7506 100644 --- a/public/stylesheets/site/2.0/10-types-groups.css +++ b/public/stylesheets/site/2.0/10-types-groups.css @@ -103,12 +103,23 @@ https://otwcode.github.io/docs/classes-taxonomy.html#grouping-and-spacing #outer.wrapper { float: left; width: 100%; + + display: flex; + display: -webkit-flex; + flex-direction: column; + -webkit-flex-direction: column; + min-height: 100vh; } #outer.wrapper, #inner.wrapper { box-shadow: none; } +#inner.wrapper { + -webkit-flex: 1; + flex: 1; +} + .module, .index, .index .index { position: relative; width: auto; From bbbb7e96f38fd3b7bcd71685d5a4e90f8cad617d Mon Sep 17 00:00:00 2001 From: forceofcalm Date: Mon, 1 Jun 2026 14:25:35 -0400 Subject: [PATCH 2/2] removed webkit rules and blank line --- public/stylesheets/site/2.0/10-types-groups.css | 3 --- 1 file changed, 3 deletions(-) diff --git a/public/stylesheets/site/2.0/10-types-groups.css b/public/stylesheets/site/2.0/10-types-groups.css index a63de4d7506..6c74945a57d 100644 --- a/public/stylesheets/site/2.0/10-types-groups.css +++ b/public/stylesheets/site/2.0/10-types-groups.css @@ -103,11 +103,9 @@ https://otwcode.github.io/docs/classes-taxonomy.html#grouping-and-spacing #outer.wrapper { float: left; width: 100%; - display: flex; display: -webkit-flex; flex-direction: column; - -webkit-flex-direction: column; min-height: 100vh; } @@ -116,7 +114,6 @@ https://otwcode.github.io/docs/classes-taxonomy.html#grouping-and-spacing } #inner.wrapper { - -webkit-flex: 1; flex: 1; }