@everymatrix/casino-collections-providers 1.29.6 → 1.29.8

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-collections-providers",
3
- "version": "1.29.6",
3
+ "version": "1.29.8",
4
4
  "main": "index.js",
5
5
  "svelte": "src/index.ts",
6
6
  "scripts": {
@@ -35,5 +35,5 @@
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "a67714e03295f6cdb76990ce33c8baeec7819b9f"
38
+ "gitHead": "a6ce52ac3c8209814f7d801c927c7d2d9224b2ae"
39
39
  }
@@ -178,7 +178,7 @@
178
178
  {#if isLoading}
179
179
  <div class="LoadingSpinner"></div>
180
180
  {:else}
181
- <div class="CasinoCollectionsProviders {mobile ? 'Mobile' : ''}">
181
+ <div class="CasinoCollectionsProviders {mobile ? 'Mobile' : ''} {type === 'vendor' ? 'Providers' : 'Collections'}">
182
182
  <div class="CategoriesHeader">
183
183
  <p class="Title"> {type == 'vendor' ? $_('providers') : $_('collections')} </p>
184
184
  <div class="ButtonsContainer">
@@ -356,6 +356,14 @@
356
356
 
357
357
  .Mobile {
358
358
 
359
+ &.Providers {
360
+ padding: 25px 10px;
361
+ }
362
+
363
+ &.Collections {
364
+ padding: 25px 10px;
365
+ }
366
+
359
367
  &.CasinoCollectionsProviders {
360
368
  padding: 25px 10px;
361
369
  }