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 */
|
|
|
|
#root { display:flex; height:100%; }
|
2022-07-26 06:08:24 +02:00
|
|
|
|
|
|
|
/* These styles are for src/view/com/modals/WebModal */
|
|
|
|
div[data-modal-overlay] {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
background: #0004;
|
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
|
|
|
}
|
|
|
|
div[data-modal-container] {
|
|
|
|
position: fixed;
|
|
|
|
top: 20vh;
|
|
|
|
left: calc(50vw - 300px);
|
|
|
|
width: 600px;
|
|
|
|
padding: 20px;
|
|
|
|
background: #fff;
|
|
|
|
border-radius: 10px;
|
|
|
|
box-shadow: 0 5px 10px #0005;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* These styles are for src/view/com/util/Toast */
|
|
|
|
div[data-toast-container] {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 5vh;
|
|
|
|
right: 5vh;
|
|
|
|
width: 350px;
|
|
|
|
padding: 20px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
background: #fff;
|
|
|
|
border-radius: 10px;
|
|
|
|
box-shadow: 0 5px 10px #0005;
|
|
|
|
}
|
|
|
|
div[data-toast-container] > div {
|
|
|
|
font-size: 18px;
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
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>
|