mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-07-16 16:47:21 +02:00
cdfd462955
This allows the unstyled user agent elements (like the checkbox) match the selected theme colors
18 lines
408 B
HTML
18 lines
408 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0, viewport-fit=cover, user-scalable=0"
|
|
/>
|
|
<meta name="color-scheme" content="dark light" />
|
|
<title>API Example App</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html>
|