/* App-wide web styles (distinct from splash.css, which only styles the splash screen).
 *
 * overscroll-behavior-x: none prevents Chrome from triggering its horizontal
 * back/forward history navigation gesture when the user scrolls inside a
 * horizontal scrollable (e.g. markdown tables, code blocks, carousels).
 *
 * Without this, two-finger trackpad swipes on Chrome desktop navigate back
 * instead of scrolling the table.
 *
 * Using `-x` (axis-specific) preserves any vertical overscroll behavior.
 * Targets html + body so it applies regardless of which element the browser
 * picks as the viewport-defining element.
 */
html,
body {
  overscroll-behavior-x: none;
}
