Skip to content

Commit

Permalink
tweaking package.json description field, fixing missing semicolon in …
Browse files Browse the repository at this point in the history
…external.js, fixing CSS responsiveness (mobile and desktop) of modal sizing (fonts, etc)
  • Loading branch information
getify committed Mar 26, 2024
1 parent eeca156 commit b9396c6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webauthn-local-client",
"description": "Client-only (browser) code for locally managing WebAuthn (passkey) API",
"description": "Browser-only utils for locally managing WebAuthn (passkey) API",
"version": "0.0.0-a",
"exports": {
".": "./dist/bundlers/walc.mjs",
Expand Down
2 changes: 1 addition & 1 deletion src/external.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ await Promise.all([
loadScript(import.meta.resolve("./external/libsodium.js")),
loadScript(import.meta.resolve("./external/cbor.js")),
loadScript(import.meta.resolve("./external/asn1.all.min.js")),
])
]);
await loadScript(import.meta.resolve("./external/libsodium-wrappers.js"));


Expand Down
2 changes: 1 addition & 1 deletion test/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<title>WebAuthn Local Client: Tests</title>
<style>
.toast-popup .swal2-html-container { white-space: nowrap; }
.swal2-popup { font-size: 3vw; }
.swal2-popup { font-size: max(0.6rem,min(3vw,1rem)); }
.swal2-popup .swal2-html-container { font-size: unset !important; }
.swal2-popup .modal-btn { display: inline-block; color: white; background-color: black; border: 0; border-radius: 0.25em; font-size: 1em !important; }
ul { list-style-type: none; padding: 0; }
Expand Down

0 comments on commit b9396c6

Please sign in to comment.