@everymatrix/casino-game-page 0.0.362 → 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
@@ -33,6 +33,7 @@
33
33
  <casino-game-page
34
34
  gameid="46985"
35
35
  lang="en"
36
+ integratedgameframe="true"
36
37
  endpoint="https://demo-api.stage.norway.everymatrix.com/v1"
37
38
  playforfun="true"
38
39
  ></casino-game-page>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everymatrix/casino-game-page",
3
- "version": "0.0.362",
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": "154d1b620474e61bee3507cc52d40bfd33236024"
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: {!isModal? `url(${game.backgroundImageUrl})`: ''}; background-size: cover" bind:this={gamePageBackground}>
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: 1300px;
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 {