@everymatrix/casino-game-page 0.0.363 → 0.0.365
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/index.html
CHANGED
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.365",
|
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": "f4dabfce4df55a591981f327a670cc250a2ed257"
|
40
40
|
}
|
@@ -558,6 +558,8 @@
|
|
558
558
|
}
|
559
559
|
});
|
560
560
|
|
561
|
+
|
562
|
+
|
561
563
|
$: lang && setActiveLanguage();
|
562
564
|
$: endpoint && gameid && lang && createGameURL(gameid);
|
563
565
|
$: session && userid && endpoint && setSession();
|
@@ -574,7 +576,7 @@
|
|
574
576
|
{#if hasErrors}
|
575
577
|
<p class="SearchLoading" part="SearchLoading">500 Error - Internal Server Error.</p>
|
576
578
|
{:else}
|
577
|
-
<div class="GamePageBackground" style="background:
|
579
|
+
<div class="GamePageBackground" style="background:{!isModal? `url(${game.backgroundImageUrl})`: ''}; background-size: cover" bind:this={gamePageBackground}>
|
578
580
|
<div class="CasinoGamePageContainer" part="CasinoGamePageContainer" bind:this={customStylingContainer} style="background: rgba(0, 0, 0, 0.5)">
|
579
581
|
{#if detailsObtained}
|
580
582
|
{#if mobileView}
|
@@ -714,12 +716,12 @@
|
|
714
716
|
background: var(--emfe-w-color-contrast, #07072A);
|
715
717
|
margin: 0 auto;
|
716
718
|
height: 100%;
|
717
|
-
max-width:
|
719
|
+
max-width: 100%;
|
718
720
|
padding: 0;
|
719
|
-
|
720
721
|
display: flex;
|
721
722
|
flex-direction: column;
|
722
723
|
justify-content: center;
|
724
|
+
align-items: center;
|
723
725
|
}
|
724
726
|
|
725
727
|
.BottomGame {
|