-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (40 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>iOS v-app-bar hiding issue</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui"
/>
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900" rel="stylesheet" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/vuetify.min.css" rel="stylesheet" />
<style>
#content {
height: 4000px;
background: repeating-linear-gradient(
45deg,
#fff,
#fff 20px,
#eee 20px,
#eee 40px
);
}
</style>
</head>
<body>
<div id="app">
<v-app>
<v-app-bar app color="primary" class="white--text" hide-on-scroll>
<v-toolbar-title>Unimaginative title</v-toolbar-title>
</v-app-bar>
<v-main>
<div id="content"></div>
</v-main>
</v-app>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vuetify.min.js"></script>
<script>new Vue({ el: '#app', vuetify: new Vuetify({}) })</script>
</body>
</html>