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
37 lines (31 loc) · 784 Bytes
/
Copy pathApp.svelte
File metadata and controls
37 lines (31 loc) · 784 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
<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-page.html" target="_blank" rel="noreferrer">page</a>,
<a href="/entry-popup.html" target="_blank" rel="noreferrer">popup</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>