Skip to content

Commit 274bac2

Browse files
committed
fix(table): prevent page margin breaks from table overflow
1 parent eece240 commit 274bac2

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/css/_page.scss

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,10 @@ a {
3131
}
3232

3333
table {
34-
width: 100%;
34+
display: inline-block;
35+
width: auto !important;
36+
max-width: 100%;
37+
overflow-x: auto;
3538
border-collapse: collapse;
3639

3740
&.bordered {
@@ -171,4 +174,4 @@ $alert-colors: (
171174
}
172175
}
173176

174-
/* END Styles for blockquote alerts */
177+
/* END Styles for blockquote alerts */

0 commit comments

Comments
 (0)