aboutsummaryrefslogtreecommitdiff
path: root/extension/src/entries/options/index.html
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-09-06 13:51:13 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2023-09-06 13:51:13 -0400
commitcd8e865dad326f85ff2357ad90bbd6aa65dea68e (patch)
tree0d4a0bb8bafc4f807407e99c5e6bf4e1cb34217a /extension/src/entries/options/index.html
initial commit
Diffstat (limited to 'extension/src/entries/options/index.html')
-rw-r--r--extension/src/entries/options/index.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/extension/src/entries/options/index.html b/extension/src/entries/options/index.html
new file mode 100644
index 0000000..72f2de7
--- /dev/null
+++ b/extension/src/entries/options/index.html
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<html lang="en" class="flex" style="min-height: 100vh; min-width: 100vw;">
+ <head>
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
+ <title>Nostr Vault</title>
+ <style>
+ body.dark{
+ @apply bg-dark-900;
+ }
+ body{
+ @apply bg-gray-50;
+ }
+ </style>
+ </head>
+ <body class="w-full">
+ <div id="app"></div>
+ <script type="module" src="./main.js"></script>
+ </body>
+</html>