Skip to content

Commit

Permalink
Fix manifest file
Browse files Browse the repository at this point in the history
  • Loading branch information
mrruby committed Oct 30, 2023
1 parent e7948e7 commit 1520502
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
%sveltekit.head%
</head>
<body class="font-sans" data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div>
<div class="contents">%sveltekit.body%</div>
</body>
</html>
2 changes: 1 addition & 1 deletion src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<div class="m-8">
<div class="flex justify-between items-center mb-4">
<img src="/img/holo_logo.svg" alt="Holo Key Manager Logo" />
<button on:click={dismissExtensionWindow} style="background: none; border: none;">
<button on:click={dismissExtensionWindow} class="bg-transparent border-none">
<img src="/img/close.svg" alt="Close" />
</button>
</div>
Expand Down
2 changes: 1 addition & 1 deletion static/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
"default_popup": "index.html"
},
"content_security_policy": {
"extension_pages": "default-src 'self' 'wasm-unsafe-eval'; style-src 'self' 'wasm-unsafe-eval' 'unsafe-inline'"
"extension_pages": "default-src 'self' 'wasm-unsafe-eval'"
}
}

0 comments on commit 1520502

Please sign in to comment.