dashboard
repositories
filestore
activity
search
login
main
/
srs-police-affairs
上饶市警务平台
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
feat:独栋显示调整
shuishen
2026-02-10
abd285e6d013128aa57c9e30e851b2aa76d60ec5
[srs-police-affairs.git]
/
src
/
utils
/
fontSize.js
1
2
3
4
5
6
export function fontSize (size) {
let clientHeight = window.screen.availHeight
if (!clientHeight) return
let fontSize = size / 1080 * clientHeight
return fontSize
}