forked from vuejs/router
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
47 lines (42 loc) · 1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Vue Router e2e tests - Modal</title>
<style>
#dialog {
top: 0;
left: 0;
position: fixed;
width: 100vw;
height: 100vh;
border: none;
margin: 0;
padding: 0;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
padding-top: 2%;
}
#dialog:not([open]) {
display: none;
}
/* container */
#dialog > * {
background-color: white;
max-width: 500px;
max-height: 300px;
padding: 1rem;
}
</style>
</head>
<body>
<a href="/"><< Back to Homepage</a>
<hr />
<main id="app"></main>
<script type="module" src="/modal/index.ts"></script>
</body>
</html>