Thanks to visit codestin.com Credit goes to github.com
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 0ae5b6c commit dd134aaCopy full SHA for dd134aa
components/ui/MarkdownContent/stylesheets/table.scss
@@ -12,6 +12,14 @@
12
from expanding beyond the horizontal boundaries of the parent element. */
13
table-layout: auto;
14
15
+ /* For mobile (small viewports) we need to fix the table because if the table
16
+ is larger than the viewport it will force the width of the table causing issues
17
+ with the header on scroll
18
+ */
19
+ @media (max-width: 544px) {
20
+ table-layout: fixed;
21
+ }
22
+
23
code {
24
font-size: 85%;
25
padding: 0.2em 0.4em;
0 commit comments