@everymatrix/casino-page 0.0.157 → 0.0.161
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/dist/casino-page.js +415 -393
- package/dist/casino-page.js.map +1 -1
- package/package.json +2 -2
- package/src/CasinoPage.svelte +9 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everymatrix/casino-page",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.161",
|
|
4
4
|
"main": "dist/casino-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": "d734e5f1b488eaca6400399db42f53fefb48bdb0"
|
|
40
40
|
}
|
package/src/CasinoPage.svelte
CHANGED
|
@@ -29,6 +29,8 @@
|
|
|
29
29
|
export let mostplayed:string = '';
|
|
30
30
|
export let lobbyid:string = 'casinodefault'; // identifier for recent searched
|
|
31
31
|
|
|
32
|
+
export let containermaxwidth:string = '';
|
|
33
|
+
|
|
32
34
|
// CasinoPage loading state
|
|
33
35
|
let isLoading:boolean = false;
|
|
34
36
|
let hasErrors:boolean = false;
|
|
@@ -807,7 +809,7 @@
|
|
|
807
809
|
{#if hasErrors}
|
|
808
810
|
<p class="SearchLoading">500 Error - Internal Server Error</p>
|
|
809
811
|
{:else}
|
|
810
|
-
<section class="CategoriesLobby" bind:this={customStylingContainer}>
|
|
812
|
+
<section class="CategoriesLobby" bind:this={customStylingContainer} style="max-width: {containermaxwidth}px;">
|
|
811
813
|
{#if (getDevice(userAgent) !== 'PC') && (alternativesearch === 'false') && mobileSearchViewActive}
|
|
812
814
|
<div class="SearchBarPlaceholder"></div>
|
|
813
815
|
{/if}
|
|
@@ -1059,6 +1061,11 @@
|
|
|
1059
1061
|
font-family: 'Helvetica Neue', 'Helvetica', sans-serif;
|
|
1060
1062
|
}
|
|
1061
1063
|
|
|
1064
|
+
.CategoriesLobby {
|
|
1065
|
+
margin: 0 auto;
|
|
1066
|
+
padding: 0 10px;
|
|
1067
|
+
}
|
|
1068
|
+
|
|
1062
1069
|
.PanicSectionMobile {
|
|
1063
1070
|
flex-direction: column;
|
|
1064
1071
|
margin-bottom: 40px;
|
|
@@ -1263,6 +1270,7 @@
|
|
|
1263
1270
|
.CategoriesHeaderMobileSection {
|
|
1264
1271
|
position: fixed;
|
|
1265
1272
|
bottom: 0;
|
|
1273
|
+
left: 0;
|
|
1266
1274
|
flex-direction: row-reverse;
|
|
1267
1275
|
z-index: 1;
|
|
1268
1276
|
.ClearFilterButtonWrapper {
|