mirror of
https://github.com/pezkuwichain/pezkuwi-p2p-mobile.git
synced 2026-04-21 23:37:55 +00:00
9223c719cc
- Set dark mode as default (class="dark" on html) - Update dark mode CSS variables for better contrast - Fix popover/select dropdown colors - Improve SelectItem hover and focus states
14 lines
380 B
HTML
14 lines
380 B
HTML
<!doctype html>
|
|
<html lang="en" class="dark">
|
|
<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>pezkuwi-p2p-mobile</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|