-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 977 Bytes
/
Copy pathindex.html
File metadata and controls
32 lines (32 loc) · 977 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!doctype html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pascal's Personal Game Manager</title>
<script>
// Apply zoom immediately before React loads to prevent visual flash
(function() {
try {
var cached = localStorage.getItem('font_size_cache');
if (cached) {
var val = parseInt(cached, 10);
if (!isNaN(val) && val >= 80 && val <= 150) {
document.documentElement.style.zoom = (val / 100);
} else {
document.documentElement.style.zoom = 1;
}
} else {
document.documentElement.style.zoom = 1;
}
} catch (e) {
document.documentElement.style.zoom = 1;
}
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>