Files
rclone-ui/index.html
T
FTCHD fc82a4668b remove onboarding
ain't nobody got time for that
2026-05-11 12:31:43 +03:00

30 lines
798 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')
) {
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>