Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
cometapii/llm
oki692
/
open-webui
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
open-webui
/
src
/
lib
/
utils
/
text-scale.ts
oki692
Deploy Open WebUI
87a665c
verified
11 days ago
raw
Copy download link
history
blame
contribute
delete
175 Bytes
export
const
setTextScale
= (
scale
) => {
if
(
typeof
document
===
'undefined'
) {
return
;
}
document
.
documentElement
.
style
.
setProperty
(
'--app-text-scale'
,
`
${scale}
`
);
};