@everymatrix/casino-games-category-section 0.0.194 → 0.0.198

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-games-category-section",
3
- "version": "0.0.194",
3
+ "version": "0.0.198",
4
4
  "main": "dist/casino-games-category-section.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": "304c45e7453bfc650dd29548b0905e8b5e3815fb"
39
+ "gitHead": "d060021a394c9bafc29edd3537ebd655f33aed03"
40
40
  }
@@ -466,7 +466,7 @@
466
466
  {:else}
467
467
  {#if searched}
468
468
  <div class="CasinoGamesContainer">
469
- <div class="CasinoGamesHeader Searched">
469
+ <div class="CasinoGamesHeader Searched {isMobile(userAgent) ? 'CasinoGamesHeaderMobile' : ''}">
470
470
  {#if recentSearched}
471
471
  <h3 class="StatusText">
472
472
  {$_('gamesCategorySection.recentSearchedItems')}
@@ -485,7 +485,7 @@
485
485
  </div>
486
486
  {#if shownCategoryData}
487
487
  {#if !showItems}
488
- <p class="NoSearchResults NoRecentSearches NoRecentSearchesCenter">{$_('gamesCategorySection.noRecentSearch')}</p>
488
+ <p class="NoSearchResults NoRecentSearches NoRecentSearchesCenter {isMobile(userAgent) ? 'NoRecentSearchesMobile' : ''}">{$_('gamesCategorySection.noRecentSearch')}</p>
489
489
  {/if}
490
490
  <ul class="CasinoGamesGrid">
491
491
  {#each shownCategoryData as gameprops, index}
@@ -705,6 +705,9 @@
705
705
 
706
706
  .NoRecentSearchesCenter {
707
707
  text-align: center;
708
+ &.NoRecentSearchesMobile {
709
+ text-align: left;
710
+ }
708
711
  }
709
712
 
710
713
  .NoFavoriteGames {
@@ -760,6 +763,9 @@
760
763
  &.Searched {
761
764
  justify-content: center;
762
765
  }
766
+ &.CasinoGamesHeaderMobile.Searched {
767
+ justify-content: flex-start;
768
+ }
763
769
  }
764
770
 
765
771
  .CasinoGamesContainer {