Skip to content

Commit

Permalink
Merge pull request #410 from TokenScript/fix/button-icon-position
Browse files Browse the repository at this point in the history
fix: button svg icon position fix
  • Loading branch information
nicktaras committed Oct 10, 2022
2 parents 063805e + a76b78e commit 3ffbaa8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/client/views/start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export class Start extends AbstractView {
}

async goToWalletSelection() {
this.client.checkInternetConnectivity();
// this.client.checkInternetConnectivity();

// TODO: Enable skipping of start screen when wallet is already connected?
this.ui.showLoaderDelayed(["Initializing wallet.."], 500);
Expand Down
3 changes: 3 additions & 0 deletions src/theme/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,9 @@
cursor: pointer;
z-index: 999;
position: absolute;
display: flex;
align-items: center;
justify-content: center;
}

.overlay-tn.popup-tn.bottom-right .overlay-fab-button-tn {
Expand Down
2 changes: 1 addition & 1 deletion token-negotiator-dist/negotiator.js

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions token-negotiator-dist/theme/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,9 @@
cursor: pointer;
z-index: 999;
position: absolute;
display: flex;
align-items: center;
justify-content: center;
}

.overlay-tn.popup-tn.bottom-right .overlay-fab-button-tn {
Expand Down

1 comment on commit 3ffbaa8

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.
Category Percentage Covered / Total
🔴 Statements 40.96% 915/2234
🔴 Branches 26.92% 249/925
🔴 Functions 43.96% 142/323
🔴 Lines 40.53% 809/1996

Test suite run success

74 tests passing in 8 suites.

Report generated by 🧪jest coverage report action from 3ffbaa8

Please sign in to comment.