Skip to content

Commit

Permalink
Fork hcSeedBundle
Browse files Browse the repository at this point in the history
  • Loading branch information
mrruby committed Oct 30, 2023
1 parent 3d7f051 commit f6e8850
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .lintstagedrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"*.{js,ts,svelte,css,scss,postcss,json}": ["eslint", "prettier --write --plugin-search-dir=."]
"*.{js,ts,svelte,postcss,json}": ["eslint", "prettier --write --plugin-search-dir=."]
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
},
"type": "module",
"dependencies": {
"hcSeedBundle": "git+https://github.com/holochain/hcSeedBundle#semver:^0.0.3",
"hcSeedBundle": "git+https://github.com/mrruby/hcSeedBundle",
"clsx": "^2.0.0",
"svelte": "^4.0.5",
"tailwindcss": "^3.3.3",
Expand Down
22 changes: 11 additions & 11 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,10 @@
body {
min-width: 368px;
}

@font-face {
font-family: 'Nunito Sans';
src: url('/fonts/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf') format('truetype');
font-weight: 300 400 500 700; /* Set the range of font weights available */
font-stretch: 75% 100%; /* Set the range of font stretches available */
}
9 changes: 5 additions & 4 deletions src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@
<head>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,[email protected],300;6..12,400;6..12,500;6..12,700&display=swap"
rel="stylesheet"
rel="preload"
href="/fonts/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf"
as="font"
type="font/ttf"
crossorigin
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
%sveltekit.head%
Expand Down
1 change: 1 addition & 0 deletions src/routes/setup/generate-keys/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
});
async function download(): Promise<void> {
console.log($passphraseStore);
console.log(await generateKeys($passphraseStore));
// throw new Error('Function not implemented.');
}
Expand Down
Binary file not shown.
3 changes: 3 additions & 0 deletions static/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,8 @@
"default_title": "Holo key manager",
"default_icon": "favicon.png",
"default_popup": "index.html"
},
"content_security_policy": {
"extension_pages": "default-src 'self' 'wasm-unsafe-eval'; style-src 'self' 'wasm-unsafe-eval' 'unsafe-inline'"
}
}

0 comments on commit f6e8850

Please sign in to comment.