Handy/src/overlay/index.html
NourEldin Osama 804c1263d5
feat(i18n): Enhance RTL support and update language direction handling (#698)
* feat(i18n): Enhance RTL support and update language direction handling

* format

* minor tweaks

---------

Co-authored-by: CJ Pais <cj@cjpais.com>
2026-02-04 17:43:16 +08:00

27 lines
535 B
HTML

<!doctype html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<title>Recording Overlay</title>
<style>
html,
body {
margin: 0;
padding: 0;
background: transparent;
overflow: hidden;
width: 100%;
height: 100%;
}
#root {
width: 100%;
height: 100%;
overflow: hidden;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/overlay/main.tsx"></script>
</body>
</html>