mirror of
https://github.com/acid-info/Kurate.git
synced 2025-01-13 01:14:12 +00:00
style: add break word to profile hashes (#138)
This commit is contained in:
parent
9e332bbc15
commit
391e149a88
@ -104,12 +104,14 @@
|
|||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
{#each Object.entries($profile.identities) as [name, identity]}
|
<div class="info">
|
||||||
<div>{name}</div>
|
{#each Object.entries($profile.identities) as [name, identity]}
|
||||||
<div>commitment: {identity.getCommitment().toString(16)}</div>
|
<div>{name}</div>
|
||||||
<div>nullifier: {identity.getNullifier().toString(16)}</div>
|
<div>commitment: {identity.getCommitment().toString(16)}</div>
|
||||||
<div>trapdoor: {identity.getTrapdoor().toString(16)}</div>
|
<div>nullifier: {identity.getNullifier().toString(16)}</div>
|
||||||
{/each}
|
<div>trapdoor: {identity.getTrapdoor().toString(16)}</div>
|
||||||
|
{/each}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
@ -190,4 +192,13 @@
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.info {
|
||||||
|
padding: var(--spacing-12);
|
||||||
|
max-width: 100%;
|
||||||
|
word-wrap: break-word;
|
||||||
|
|
||||||
|
> div:not(:first-child) {
|
||||||
|
margin-top: var(--spacing-12);
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user