bsky-app/public/index.html

24 lines
638 B
HTML
Raw Normal View History

2022-06-08 22:52:12 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title> WEBAPP </title>
2022-06-09 23:32:03 +02:00
<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 */
2023-01-27 00:55:15 +01:00
#app-root { display:flex; height:100%; }
/* Remove focus state on inputs */
*:focus {
outline: 0;
}
2022-06-09 23:32:03 +02:00
</style>
2022-06-08 22:52:12 +02:00
</head>
<body>
<div id="app-root"></div>
2022-06-08 22:52:12 +02:00
</body>
</html>