From 46cb49932ebcc83207813decb6b58954807c90f7 Mon Sep 17 00:00:00 2001 From: Rito Rhymes <83614463+ritorhymes@users.noreply.github.com> Date: Thu, 18 Sep 2025 06:08:33 -0400 Subject: [PATCH] fix(table): prevent page margin breaks from table overflow Signed-off-by: Rito Rhymes <83614463+ritorhymes@users.noreply.github.com> --- src/css/_page.scss | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/css/_page.scss b/src/css/_page.scss index 9a17cedab..569ba5cee 100644 --- a/src/css/_page.scss +++ b/src/css/_page.scss @@ -31,7 +31,10 @@ a { } table { - width: 100%; + display: inline-block; + width: auto !important; + max-width: 100%; + overflow-x: auto; border-collapse: collapse; &.bordered { @@ -171,4 +174,4 @@ $alert-colors: ( } } -/* END Styles for blockquote alerts */ +/* END Styles for blockquote alerts */ \ No newline at end of file