/*
 * `overflow-x: hidden` also computes an automatic vertical overflow value.
 * On html/body this creates a non-scrolling sticky ancestor. `clip` keeps the
 * horizontal clipping without creating that ancestor, so sticky follows the
 * viewport scroll as expected.
 */
html.pixel-has-sticky-container,
body.pixel-has-sticky-container {
	overflow-x: clip;
	overflow-y: visible;
}
