We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ee87a3 commit e19e75dCopy full SHA for e19e75d
_sass/site.scss
@@ -65,6 +65,13 @@
65
66
/* style tables */
67
table td,table th{padding:10px;border:1px solid #ddd}
68
+/* prevent tables on mobile from breaking right page margin when overflowing*/
69
+table {
70
+ display: inline-block;
71
+ width: auto;
72
+ max-width: 100%;
73
+ overflow-x: auto;
74
+}
75
76
/*
77
Global transition
_sass/typography.scss
@@ -155,3 +155,8 @@ pre {
155
line-height: 1.5;
156
overflow-x: auto;
157
}
158
+/* prevent margin page breaks on mobile from overflow*/
159
+.language-plaintext.highlighter-rouge {
160
+ white-space: pre-wrap;
161
+ word-break: break-word;
162
0 commit comments