@everymatrix/casino-game-page 0.0.258 → 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/casino-game-page",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.259",
|
4
4
|
"main": "dist/casino-game-page.js",
|
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
|
}
|
@@ -198,7 +198,7 @@
|
|
198
198
|
let url:URL = new URL(`${endpoint}/casino/games/${gameId}`);
|
199
199
|
|
200
200
|
url.searchParams.append('language', lang);
|
201
|
-
|
201
|
+
|
202
202
|
fetch(url.href)
|
203
203
|
.then((res:any) => res.json())
|
204
204
|
.then((data:any) => {
|
@@ -565,13 +565,6 @@
|
|
565
565
|
{/if}
|
566
566
|
|
567
567
|
<style lang="scss">
|
568
|
-
//This function does a multiplication
|
569
|
-
// in order to work with px the
|
570
|
-
// same way as working with em
|
571
|
-
@function ttp($value) {
|
572
|
-
$multiplicator: 16px;
|
573
|
-
@return $value * $multiplicator;
|
574
|
-
}
|
575
568
|
|
576
569
|
:host {
|
577
570
|
font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
|
@@ -698,7 +691,7 @@
|
|
698
691
|
.FavIconContainer {
|
699
692
|
position: absolute;
|
700
693
|
top: 42px;
|
701
|
-
left:
|
694
|
+
left: 42px;
|
702
695
|
cursor: pointer;
|
703
696
|
}
|
704
697
|
.PanicSectionMobile {
|
@@ -719,14 +712,14 @@
|
|
719
712
|
fill: none;
|
720
713
|
}
|
721
714
|
p {
|
722
|
-
font-size:
|
715
|
+
font-size: 16px;
|
723
716
|
color: var(--emfe-w-color-white, #FFFFFF);
|
724
717
|
}
|
725
718
|
.Button {
|
726
719
|
border-radius: 5px;
|
727
720
|
border: 1px solid var(--emfe-w-color-primary, #D0046C);
|
728
721
|
background-color: var(--emfe-w-color-primary, #D0046C);
|
729
|
-
width:
|
722
|
+
width: 240px;
|
730
723
|
height: 60px;
|
731
724
|
color: var(--emfe-w-color-white, #FFFFFF);
|
732
725
|
cursor: pointer;
|