1234567891011 |
- export function initRemSize() {
- function setRem() {
- const clientWidth = document.documentElement.clientWidth;
- const width = clientWidth > 750 ? 750 : clientWidth;
- const fontSize = (width / 750) * 50;
- document.documentElement.style.fontSize = fontSize + "px";
- }
- window.addEventListener("resize", setRem);
- setRem();
- }
|