forked from quoid/userscripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.svelte
More file actions
46 lines (40 loc) · 827 Bytes
/
Copy pathApp.svelte
File metadata and controls
46 lines (40 loc) · 827 Bytes
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
<script>
import Logo from "./assets/logo.png";
</script>
<main>
<div>
<a
href="https://github.com/quoid/userscripts"
target="_blank"
rel="noreferrer"
>
<img src={Logo} class="logo" alt="Logo" />
</a>
</div>
<h1>Userscripts dev</h1>
<p>
<a href="/entry-app-webview.html" target="_blank" rel="noreferrer">
native-app
</a>,
<a href="/entry-ext-action-popup.html" target="_blank" rel="noreferrer">
action-popup
</a>,
<a href="/entry-ext-extension-page.html" target="_blank" rel="noreferrer">
extension-page
</a>
</p>
<p class="read-the-docs">This is the development preview environment</p>
</main>
<style>
.logo {
height: 6em;
padding: 1.5em;
will-change: filter;
}
.logo:hover {
filter: drop-shadow(0 0 2em #646cffaa);
}
.read-the-docs {
color: #888;
}
</style>