Skip to content

Commit

Permalink
fix: update action button banner based on user feedback (ui/ux) (hotfix)
Browse files Browse the repository at this point in the history
* Update README.md

Signed-off-by: Daniel Jancar <[email protected]>

* fix: update action button banner based on user feedback (ui/ux) (hotfix)

---------

Signed-off-by: Daniel Jancar <[email protected]>
  • Loading branch information
danieljancar authored Aug 23, 2024
1 parent 98c7329 commit 410d086
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ This project is part of the [Stellar Smart Contract Challenge](https://dev.to/ch

We built a blockchain-based voting platform using Stellar Smart Contracts. VoteVault is a secure and transparent voting platform that allows users to create and participate in voting processes. Find out more about our journey building VoteVault in the [Dev.to post](https://dev.to/gr1ll/votevault-our-journey-from-a-lunchtime-idea-to-dapp-2opf) or visit the [VoteVault website](https://vv.danieljancar.dev).

**Note**: Our Smart Contracts are still deployed on the [Stellar Testnet](https://developers.stellar.org/docs/learn/fundamentals/networks#testnet) and can't be used for a large audience yet. The application currently serves as a proof-of-concept and fully functioning prototype. 🌱
**Note**: Our Smart Contracts are still deployed on the [Stellar Testnet](https://developers.stellar.org/docs/learn/fundamentals/networks#testnet) and can't be used for a large audience yet. Also we can't ensure full auth security and integrity. The application currently serves as a proof-of-concept and fully functioning prototype. 🌱

# Table of Contents

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ <h1 class="font-bold">Your public and secret keys</h1>
to your account!
<button
(click)="downloadSecretKey()"
class="hover:underline font-medium cursor-pointer text-yellow-800 hover:text-yellow-600 focus:outline-none focus:underline focus:text-yellow-600"
class="underline font-medium cursor-pointer text-yellow-800 hover:text-yellow-600 focus:outline-none focus:underline focus:text-yellow-600"
role="button"
tabindex="0"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ <h1 class="font-bold">{{ title }}</h1>
{{ message }}
<button
(click)="onActionClick()"
class="hover:underline font-medium cursor-pointer text-red-800 hover:text-red-600 focus:outline-none focus:underline focus:text-red-600"
class="underline font-medium cursor-pointer text-red-800 hover:text-red-600 focus:outline-none focus:underline focus:text-red-600"
role="button"
tabindex="0"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
<h1 class="font-bold">{{ title }}</h1>
<p class="text-sm">
{{ message }}
@if (showHomeButton){
@if (showHomeButton) {
<button
(click)="onActionClick()"
class="hover:underline font-medium cursor-pointer text-green-800 hover:text-green-600 focus:outline-none focus:underline focus:text-green-600"
class="underline font-medium cursor-pointer text-green-800 hover:text-green-600 focus:outline-none focus:underline focus:text-green-600"
role="button"
tabindex="0"
>
Expand Down

0 comments on commit 410d086

Please sign in to comment.