@everymatrix/player-deposit 0.0.256 → 0.0.259
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everymatrix/player-deposit",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.259",
|
|
4
4
|
"main": "dist/player-deposit",
|
|
5
5
|
"svelte": "src/index.ts",
|
|
6
6
|
"scripts": {
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"publishConfig": {
|
|
37
37
|
"access": "public"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "7e26e42bac250a646d98bd80910b234522350fd6"
|
|
40
40
|
}
|
package/src/PlayerDeposit.svelte
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
|
|
25
25
|
|
|
26
26
|
const toggleScreen = ():void => {
|
|
27
|
-
window.postMessage({
|
|
27
|
+
window.postMessage({type: 'PlayerAccountMenuActive', isMobile}, window.location.href);
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
const messageHandler = (e:any):void => {
|
|
@@ -126,13 +126,6 @@
|
|
|
126
126
|
|
|
127
127
|
|
|
128
128
|
<style lang="scss">
|
|
129
|
-
//This function does a multiplication
|
|
130
|
-
// in order to work with px the
|
|
131
|
-
// same way as working with em
|
|
132
|
-
@function ttp($value) {
|
|
133
|
-
$multiplicator: 16px;
|
|
134
|
-
@return $value * $multiplicator;
|
|
135
|
-
}
|
|
136
129
|
|
|
137
130
|
:host {
|
|
138
131
|
font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
|