bsky-app/public/index.html

24 lines
638 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title> WEBAPP </title>
<style>
/* These styles make the body full-height */
html, body { height: 100%; }
/* These styles disable body scrolling if you are using <ScrollView> */
body { overflow: hidden; }
/* These styles make the root element full-height */
#app-root { display:flex; height:100%; }
/* Remove focus state on inputs */
*:focus {
outline: 0;
}
</style>
</head>
<body>
<div id="app-root"></div>
</body>
</html>