Skip to content

Instantly share code, notes, and snippets.

@hctilg
Last active February 27, 2026 11:43
Show Gist options
  • Select an option

  • Save hctilg/2031e1d264d1813bd9828b2afd536e56 to your computer and use it in GitHub Desktop.

Select an option

Save hctilg/2031e1d264d1813bd9828b2afd536e56 to your computer and use it in GitHub Desktop.
حل مشکل بهم ریختن صفحات در موبایل
const resize_habdler = () => {
document.documentElement.style.setProperty('--width', `${window.innerWidth}px`);
document.documentElement.style.setProperty('--height', `${window.innerHeight}px`);
}
document.body.onresize = ev => resize_habdler();
resize_habdler();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment