@everymatrix/casino-page 0.0.249 → 0.0.252

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-page",
3
- "version": "0.0.249",
3
+ "version": "0.0.252",
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": "38af455e241b6ef7ccabb2367be2be59e6b24352"
39
+ "gitHead": "6824e7c03c551fb8c35921b8846fdbbb49f76169"
40
40
  }
@@ -16,7 +16,7 @@
16
16
 
17
17
  export let endpoint:string = '';
18
18
  export let datasource:string = '';
19
- export let currency:string;
19
+ export let currency:string = '';
20
20
  export let lang:string = ''; // Language
21
21
  export let session:string = ''; // Value for sessionID
22
22
  export let userid:string = ''; // Value for UserID;
@@ -877,7 +877,6 @@
877
877
  </div>
878
878
  </div>
879
879
  {#if !favoritesScreen && !lobbyScreen && !mobileSearchViewActive && !mostPlayedScreen && !recentSearches && !searched && !searchFocus && !lobbyViewAux}
880
- <div class="FiltersButtonsWrapperContainer" part="FiltersButtonsWrapperContainer">
881
880
  <div class="FiltersButtonsContainer" part="FiltersButtonsContainer">
882
881
  {#if numberOfFilters}
883
882
  <div class="ClearFilterButtonWrapper" part="ClearFilterButtonWrapper" on:click="{() => clearVendorFilter()}">
@@ -906,7 +905,6 @@
906
905
  {/if}
907
906
  {/if}
908
907
  </div>
909
- </div>
910
908
  {/if}
911
909
  </div>
912
910
  {:else}
@@ -938,7 +936,7 @@
938
936
  </div>
939
937
  </div>
940
938
  {#if !favoritesScreen && !lobbyScreen && !mobileSearchViewActive && !mostPlayedScreen && !recentSearches && !searchFocus && !searched && !lobbyViewAux}
941
- <div class="FiltersButtonsContainer" part="FiltersButtonsContainer">
939
+ <div class="FiltersButtonsContainer" part="FiltersButtonsContainer">
942
940
  {#if numberOfFilters}
943
941
  <div class="ClearFilterButtonWrapper {numberOfFilters ? 'FiltersActive' : ''}" part="ClearFilterButtonWrapper {numberOfFilters ? 'FiltersActive' : ''}" on:click="{() => clearVendorFilter()}">
944
942
  <div class="ClearButton" part="ClearButton">Clear
@@ -1177,8 +1175,9 @@
1177
1175
  flex: 3;
1178
1176
  width: 100%;
1179
1177
  max-width: 600px;
1180
- margin: 0 auto;
1178
+ margin: auto 0 auto 30%;
1181
1179
  &.SearchTruncated {
1180
+ margin: auto 0 auto 30%;
1182
1181
  .SearchInput {
1183
1182
  tabindex: 999;
1184
1183
  padding: ttp(1.25) ttp(0.75) ttp(1.25) ttp(2.5);
@@ -1207,7 +1206,7 @@
1207
1206
  }
1208
1207
  }
1209
1208
  .SearchInput {
1210
- width: 100%;
1209
+ width: 520px;
1211
1210
  display: block;
1212
1211
  padding: ttp(.75) ttp(.75) ttp(.75) ttp(2.5);
1213
1212
  border-radius: ttp(.4);
@@ -1248,18 +1247,12 @@
1248
1247
  }
1249
1248
  }
1250
1249
 
1251
- .FiltersButtonsWrapperContainer {
1252
- position: relative;
1253
- }
1254
-
1255
1250
  .FiltersButtonsContainer {
1256
1251
  display: inline-flex;
1252
+ flex-direction: row-reverse;
1257
1253
  flex: 1;
1258
1254
  grid-gap: 20px;
1259
1255
  flex-direction: row-reverse;
1260
- bottom: 0;
1261
- right: 0;
1262
- position: absolute;
1263
1256
  }
1264
1257
  .FilterButtonWrapper, .ClearFilterButtonWrapper {
1265
1258
  display: inline-flex;
@@ -1315,6 +1308,8 @@
1315
1308
 
1316
1309
  .CategoriesHeaderSection {
1317
1310
  width: 100%;
1311
+ display: inline-flex;
1312
+ flex-direction: row;
1318
1313
  margin-top: 30px;
1319
1314
  }
1320
1315
  .CategoriesHeaderMobileSection {