/* Responsive hardening additions on top of the theme's own CSS.
   Kept separate from the theme's original stylesheets. */

html, body {
    overflow-x: hidden;
}

/* Admin-authored rich text (CKEditor) can contain elements the static theme
   never had to account for - guard against them overflowing on small screens. */
table:not([class]) {
    display: block;
    max-width: 100%;
    overflow-x: auto;
}

iframe {
    max-width: 100%;
}

pre, code {
    max-width: 100%;
    overflow-x: auto;
}
