diff --git a/components/interactables/QuickProfile/QuickProfile.html b/components/interactables/QuickProfile/QuickProfile.html index 46b67f804c..4cc6c1584c 100644 --- a/components/interactables/QuickProfile/QuickProfile.html +++ b/components/interactables/QuickProfile/QuickProfile.html @@ -3,7 +3,7 @@ v-click-outside="close" :style="$device.isDesktop ? `top: ${ui.quickProfilePosition.y}px; left: ${ui.quickProfilePosition.x}px;` : ''">
- +
diff --git a/components/tailored/core/group/icon/GroupIcon.html b/components/tailored/core/group/icon/GroupIcon.html index 77beb58fdb..7092397419 100644 --- a/components/tailored/core/group/icon/GroupIcon.html +++ b/components/tailored/core/group/icon/GroupIcon.html @@ -3,7 +3,6 @@
-
diff --git a/components/tailored/core/user/User.html b/components/tailored/core/user/User.html index a13b04ba0c..5d792ea744 100644 --- a/components/tailored/core/user/User.html +++ b/components/tailored/core/user/User.html @@ -1,5 +1,5 @@
- + - +
- - +
diff --git a/components/tailored/wallet/mini/body/Body.html b/components/tailored/wallet/mini/body/Body.html new file mode 100644 index 0000000000..11898677ee --- /dev/null +++ b/components/tailored/wallet/mini/body/Body.html @@ -0,0 +1,49 @@ +
+ +
+ +
+ +
+ + + + +
+
+ + + + + + +
+ +
+ + + + +
+ +
+
\ No newline at end of file diff --git a/components/tailored/wallet/mini/body/Body.less b/components/tailored/wallet/mini/body/Body.less new file mode 100644 index 0000000000..8fa80a346c --- /dev/null +++ b/components/tailored/wallet/mini/body/Body.less @@ -0,0 +1,35 @@ +#wallet-mini-send { + padding: @normal-spacing; +} +.flex-row { + display: inline-flex; + width: 100%; + flex-direction: row; + + .input-container { + flex: 1; + margin-right: @normal-spacing; + } +} +.title { + color: @green; +} +.centered { + justify-content: center; + margin-top: @normal-spacing; + margin-bottom: @normal-spacing; +} +#send-payment { + margin-top: @normal-spacing; + .is-button { + width: calc(50% - 0.25em); + } +} +.details { + border: @light-border; + padding: @light-spacing; + background: @semitransparent-light-gradient; + .is-text { + font-family: @primary-font; + } +} \ No newline at end of file diff --git a/components/tailored/wallet/mini/body/Body.vue b/components/tailored/wallet/mini/body/Body.vue new file mode 100644 index 0000000000..0f54bc6ce6 --- /dev/null +++ b/components/tailored/wallet/mini/body/Body.vue @@ -0,0 +1,25 @@ + + + diff --git a/components/tailored/wallet/mini/nav/Nav.html b/components/tailored/wallet/mini/nav/Nav.html deleted file mode 100644 index 9cf863e1c7..0000000000 --- a/components/tailored/wallet/mini/nav/Nav.html +++ /dev/null @@ -1,16 +0,0 @@ - \ No newline at end of file diff --git a/components/tailored/wallet/mini/nav/Nav.less b/components/tailored/wallet/mini/nav/Nav.less deleted file mode 100644 index abb58fa842..0000000000 --- a/components/tailored/wallet/mini/nav/Nav.less +++ /dev/null @@ -1,20 +0,0 @@ -.navbar { - width: 100%; - display: inline-flex; - padding: 0.75rem 0.5rem 0.5rem 0.5rem; - background: @semitransparent-dark-gradient; - .button { - width: 100%; - - &:nth-child(1) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - border-right: 0; - } - &:nth-child(2) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - border-left: 0; - } - } -} \ No newline at end of file diff --git a/components/tailored/wallet/mini/nav/Nav.vue b/components/tailored/wallet/mini/nav/Nav.vue deleted file mode 100644 index 71bd047947..0000000000 --- a/components/tailored/wallet/mini/nav/Nav.vue +++ /dev/null @@ -1,31 +0,0 @@ - - - diff --git a/components/tailored/wallet/mini/send/Send.html b/components/tailored/wallet/mini/send/Send.html deleted file mode 100644 index 6df9449cc9..0000000000 --- a/components/tailored/wallet/mini/send/Send.html +++ /dev/null @@ -1,3 +0,0 @@ -
- send -
\ No newline at end of file diff --git a/components/tailored/wallet/mini/send/Send.less b/components/tailored/wallet/mini/send/Send.less deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/components/tailored/wallet/mini/send/Send.vue b/components/tailored/wallet/mini/send/Send.vue deleted file mode 100644 index 794355ab7d..0000000000 --- a/components/tailored/wallet/mini/send/Send.vue +++ /dev/null @@ -1,6 +0,0 @@ - - - diff --git a/test/Crypto.spec.ts b/test/Crypto.spec.ts index 2a4c38b04b..377677d8a7 100644 --- a/test/Crypto.spec.ts +++ b/test/Crypto.spec.ts @@ -2,13 +2,13 @@ import Crypto from '../libraries/Crypto/Crypto.ts' describe('Logo', () => { // create new instance of class - const crypto = new Crypto(); + const crypto = new Crypto() // test that signMessage method exists - test("defines signMessage()", () => { - expect(typeof crypto.signMessage).toBe("function"); + test('defines signMessage()', () => { + expect(typeof crypto.signMessage).toBe('function') }); - test("expect signmessage without signingKey to be null", () => { - expect(crypto.signMessage('dogs')).toBe(null); + test('expect signmessage without signingKey to be null', () => { + expect(crypto.signMessage('dogs')).toBe(null) }); -}) \ No newline at end of file +})