feat/add auth demos (#49)

* Add auth dapp

* Add initial auth wallet

* Remove unusused files

* Refactor code

* Switched both to NPM, use npm package
This commit is contained in:
Celine Sarafa
2022-09-02 12:34:03 +03:00
committed by GitHub
parent 8db9560b72
commit 5a438ac92a
71 changed files with 35484 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
html,
body {
background-color: #141414 !important;
color: white !important;
padding: 0;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}
a {
color: inherit;
text-decoration: none;
}
* {
box-sizing: border-box;
}
@media (prefers-color-scheme: dark) {
html {
color-scheme: dark;
}
body {
color: white;
background: black;
}
}