/*
Mini Preview

Author: Gareth Hadfield
Author URI: https://opdiv.com/mini-preview

License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/*
Note on the :has() selector below: this is a non-essential progressive enhancement
that simply hides horizontal overflow on the preview iframe's parent document.
If a browser does not support :has() (Chrome <105, Firefox <121, Safari <15.4),
the only consequence is a potential horizontal scrollbar — the preview itself
continues to function perfectly. This is acceptable for a non-critical visual
refinement, so no JavaScript polyfill or fallback is needed.
*/
html:has(body.mini-preview-inside-iframe) {
	overflow-x: hidden;
}