-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathApp.razor
More file actions
33 lines (29 loc) · 1.06 KB
/
App.razor
File metadata and controls
33 lines (29 loc) · 1.06 KB
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
33
<!DOCTYPE html>
<html lang="en" class="[--scroll-mt:6.5625rem]">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<base href="/" />
<link href="css/docs.css" rel="stylesheet" />
<link rel="icon" type="image/png" href="favicon.png" />
<PageTitle>LumexUI - A versatile Blazor UI library built using Tailwind CSS</PageTitle>
<HeadOutlet />
<script>
const stored = localStorage.getItem("lumexui.theme") || "system";
const theme = stored === "system"
? window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light"
: stored;
document.documentElement.classList.add(theme);
document.documentElement.style.colorScheme = theme;
</script>
</head>
<body>
<div id="app">
<Routes />
</div>
<script src="js/prism.js"></script>
<script src="js/docs.js"></script>
<script src="_content/LumexUI/js/LumexUI.js" type="module"></script>
<script src="_framework/blazor.web.js"></script>
</body>
</html>