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%; }
|
2022-07-26 06:08:24 +02:00
|
|
|
|
2023-01-27 04:03:50 +01:00
|
|
|
/* Remove focus state on inputs */
|
2023-01-27 22:51:24 +01:00
|
|
|
*:focus {
|
2023-01-27 04:03:50 +01:00
|
|
|
outline: 0;
|
|
|
|
}
|
2022-06-09 23:32:03 +02:00
|
|
|
</style>
|
2022-06-08 22:52:12 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2023-01-26 19:12:27 +01:00
|
|
|
<div id="app-root"></div>
|
2022-06-08 22:52:12 +02:00
|
|
|
</body>
|
|
|
|
</html>
|