forked from drone/command-center-dashboard

chenyao
2025-04-21 2a45e8331f65e4fc6dee2fba898bfbeaa01b0f5c
1
2
3
4
5
6
7
8
9
10
11
12
export function onResize() {
    const resize = () => {
        const scale = document.documentElement.clientWidth / 192
        document.documentElement.style.fontSize = scale + 'px'
    }
    resize()
    window.addEventListener('resize', resize)
}
 
export const pxToRem = width => {
    return width * 0.1 + 'rem'
}