Skip to content

Commit 36dbfd9

Browse files
committedSep 10, 2021
chore: update package version
1 parent c2df89e commit 36dbfd9

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed
 

‎package-lock.json

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@myetherwallet/mewconnect-web-client",
33
"homepage": "https://github.com/myetherwallet/MEWconnect-web-client",
4-
"version": "2.2.0-beta.12",
4+
"version": "2.2.0-beta.13",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",
77
"scripts": {

‎src/connectWindow/popupWindowDesign.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ const noticetext = `
710710
}
711711
`;
712712

713-
const windowInformer = (spaceman) => {
713+
const windowInformer = spaceman => {
714714
return `
715715
<div class="Notification Notificationshow NotificationExpand">
716716
<div class="NotificationBox">
@@ -748,11 +748,11 @@ const windowInformer = (spaceman) => {
748748
`;
749749
};
750750

751-
const modalFrame = (innerContent) => {
751+
const modalFrame = innerContent => {
752752
return `
753753
<div class="mew-wallet-modal is-visible" id="mew-wallet-modal"></div>
754754
<div class="mew-wallet-modal-container-mew-modal is-visible" id="mew-wallet-modal-container">
755-
<div class="modal-dialog is-visible" id="mew-mobile-modal-dialog">
755+
<div class="mew-modal-dialog is-visible" id="mew-mobile-modal-dialog">
756756
<section class="mew-wallet-modal-content">
757757
${innerContent}
758758
</section>
@@ -799,7 +799,7 @@ ${additionalCss}
799799
z-index: 999999;
800800
}
801801
802-
div.modal-dialog {
802+
div.mew-modal-dialog {
803803
position: fixed;
804804
background: rgb(255, 255, 255);
805805
border-radius: 16px;

0 commit comments

Comments
 (0)
Please sign in to comment.