1
0
Fork 0
mirror of https://github.com/anyproto/anytype-ts.git synced 2025-06-09 09:35:02 +09:00
This commit is contained in:
Andrew Simachev 2023-12-11 13:12:50 +01:00
parent eb253b98a5
commit a0d2978ac6
No known key found for this signature in database
GPG key ID: 49A163D0D14E6FD8
15 changed files with 66 additions and 34 deletions

View file

@ -2,32 +2,30 @@
<html>
<head>
<style type="text/css">
body { font-family: Helvetica, Arial, sans-serif; font-size: 14px; line-height: 22px; }
* { margin: 0px; }
html, body { height: 100%; }
body { font-family: Helvetica, Arial, sans-serif; font-size: 14px; line-height: 22px; padding: 16px; }
.content { display: flex; align-items: center; justify-content: center; flex-direction: column; }
.title { font-size: 22px; line-height: 28px; letter-spacing: -0.48px; font-weight: 700; }
.logo { width: 64px; height: 64px; -webkit-user-select: none; user-select: none; margin: 0px 0px 12px 0px; }
.logo img { width: 100% !important; height: 100% !important; }
.title { font-size: 22px; line-height: 28px; letter-spacing: -0.48px; font-weight: 700; margin: 0px 0px 24px 0px; }
</style>
</head>
<body>
<div class="content">
<div class="logo">
<img src="../img/icon/app/64x64.png" />
</div>
<div class="title">Challenge</div>
<div id="challenge"></div>
</div>
<script type="text/javascript">
const param = getParam();
document.getElementById('challenge').innerHTML = param.challenge;
function getParam () {
var a = location.search.replace(/^\?/, '').split('&');
var param = {};
a.forEach((s) => {
var kv = s.split('=');
param[kv[0]] = kv[1];
});
return param;
};
window.addEventListener('message', (e) => {
document.getElementById('challenge').innerText = e.data.challenge;
});
</script>
</body>
</html>

BIN
dist/img/icon/app/1024x1024.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 251 KiB

BIN
dist/img/icon/app/128x128.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

BIN
dist/img/icon/app/16x16.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 452 B

BIN
dist/img/icon/app/256x256.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
dist/img/icon/app/32x32.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 785 B

BIN
dist/img/icon/app/512x512.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

BIN
dist/img/icon/app/64x64.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB