can’t innovate my ass Signed-off-by: FTCHD <144691102+FTCHD@users.noreply.github.com>
31 lines
856 B
HTML
31 lines
856 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Rclone UI</title>
|
|
<script>
|
|
document.documentElement.classList.toggle(
|
|
"dark",
|
|
localStorage.theme === "dark" ||
|
|
(!("theme" in localStorage) && window.matchMedia("(prefers-color-scheme: dark)").matches),
|
|
);
|
|
</script>
|
|
<script>
|
|
if (
|
|
window.location.pathname.startsWith('/toolbar') ||
|
|
window.location.pathname.startsWith('/startup') ||
|
|
window.location.pathname.startsWith('/onboarding')
|
|
) {
|
|
document.documentElement.classList.add('!bg-transparent')
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body class="select-none">
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|