@everymatrix/casino-page 0.0.231 → 0.0.232
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 +1 -1
- package/dist/casino-page.js.map +1 -1
- package/package.json +2 -2
- package/src/CasinoPage.svelte +7 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everymatrix/casino-page",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.232",
|
|
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": "3c2127b4476d6b57667cffae8f76e819c7941042"
|
|
40
40
|
}
|
package/src/CasinoPage.svelte
CHANGED
|
@@ -856,7 +856,7 @@
|
|
|
856
856
|
{/if}
|
|
857
857
|
</div>
|
|
858
858
|
</div>
|
|
859
|
-
{#if !favoritesScreen && !lobbyScreen && !mobileSearchViewActive && !mostPlayedScreen && !recentSearches && !searched && !lobbyViewAux}
|
|
859
|
+
{#if !favoritesScreen && !lobbyScreen && !mobileSearchViewActive && !mostPlayedScreen && !recentSearches && !searched && !searchFocus && !lobbyViewAux}
|
|
860
860
|
<div class="FiltersButtonsContainer">
|
|
861
861
|
{#if numberOfFilters}
|
|
862
862
|
<div class="ClearFilterButtonWrapper" on:click="{() => clearVendorFilter()}">
|
|
@@ -914,7 +914,7 @@
|
|
|
914
914
|
{/if}
|
|
915
915
|
</div>
|
|
916
916
|
</div>
|
|
917
|
-
{#if !favoritesScreen && !lobbyScreen && !mobileSearchViewActive && !mostPlayedScreen && !recentSearches && !searched && !lobbyViewAux}
|
|
917
|
+
{#if !favoritesScreen && !lobbyScreen && !mobileSearchViewActive && !mostPlayedScreen && !recentSearches && !searchFocus && !searched && !lobbyViewAux}
|
|
918
918
|
<div class="FiltersButtonsContainer ">
|
|
919
919
|
{#if numberOfFilters}
|
|
920
920
|
<div class="ClearFilterButtonWrapper {numberOfFilters ? 'FiltersActive' : ''} " on:click="{() => clearVendorFilter()}">
|
|
@@ -1375,6 +1375,11 @@
|
|
|
1375
1375
|
right: 0;
|
|
1376
1376
|
font-size: 13px;
|
|
1377
1377
|
gap: 6px;
|
|
1378
|
+
|
|
1379
|
+
@media screen and (max-width: 1300px) {
|
|
1380
|
+
right: 2.4%;
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1378
1383
|
.FilterIconContainer {
|
|
1379
1384
|
display: none;
|
|
1380
1385
|
}
|