Skip to content

Commit

Permalink
remove sticky tooltip on present
Browse files Browse the repository at this point in the history
  • Loading branch information
F-Node-Karlsruhe committed Mar 17, 2023
1 parent 37ec9c4 commit 71a3f86
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ VC Verifier Changelog
WIP
---

- UI improvements

1.4.0 (2023-03-15)
---

Expand Down
6 changes: 2 additions & 4 deletions frontend/src/views/Entry.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,8 @@
</p>
</div>
<div class="col-3 text-end">
<router-link :to="{ path: 'request' }" class="btn btn-outline-primary" type="button"
data-bs-container="body" data-bs-trigger="hover" data-bs-toggle="tooltip"
data-bs-title="Generates an OpenId4VP presentation request"><i class="bi-send-check-fill" role="img"
aria-label="Presentation request"></i>
<router-link :to="{ path: 'request' }" class="btn btn-outline-primary" type="button"><i
class="bi-send-check-fill" role="img" aria-label="Presentation request"></i>
</router-link>
</div>
</div>
Expand Down
13 changes: 10 additions & 3 deletions frontend/src/views/PresentationRequest.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,27 @@
</div>
<div class="row">
<div class="col-12 px-0 mt-3 text-center">
<div v-if="generating" style="min-height: 300px;">
<p class="m-5 text-muted">Registering presentation request</p>
<div v-if="generating" class="my-3" style="min-height: 300px;">
<p class="p-5 m-0 text-muted">Registering presentation request</p>
<div class="spinner-border text-primary m-5" role="status"
style="width: 5rem; height: 5rem; top: 150px;">
<span class="visually-hidden">Generating...</span>
</div>
</div>
<qrcode-vue v-else-if="presentationRequestId" :value="presentationRequestURI" :margin="1" :size="300"
level="M" class="my-3" id="presentation-request-canvas" />
<div v-else style="min-height: 300px;">
<div v-else class="my-3" style="min-height: 300px;">
<p class="p-5 text-muted">Please configure your presentation request</p>
</div>
</div>
</div>
<div class="row">
<div class="col-12 mt-3 text-center text-muted">
<small>Using the <a
href="https://openid.net/specs/openid-4-verifiable-presentations-1_0.html">OpenId4VC</a>
protocol</small>
</div>
</div>
</div>
</div>
</template>
Expand Down

0 comments on commit 71a3f86

Please sign in to comment.