Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
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
3 months ago
Raw
Download with hf CLI
Copy download link
History
Blame
Contribute
Delete
Safe
175 Bytes
export
const
setTextScale
= (
scale
) => {
if
(
typeof
document
===
'undefined'
) {
return
;
}
document
.
documentElement
.
style
.
setProperty
(
'--app-text-scale'
,
`
${scale}
`
);
};