@everymatrix/casino-collections-providers 0.0.407 → 0.0.409

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": "0.0.407",
3
+ "version": "0.0.409",
4
4
  "main": "index.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": "3c5fcc43855582b1e4b7592c9b7ac4c3824d4bc7"
39
+ "gitHead": "9c1c3fb8c2942cecd4325eb5d4c8918496160976"
40
40
  }
@@ -179,7 +179,7 @@
179
179
  <div class="CategoriesSlider" bind:this={categoriesSlider}>
180
180
  {#each gameCategories as category}
181
181
  <div class="CategoriesSliderWrapper Animation">
182
- <div class="CategorySlide" style:background-image={"url(https://static.everymatrix.com/cms2/base/_casino/B/B3BEB9DD45D98139D05637186C8E30DC.jpg)"} on:click={() => openCategory(category.id)}>
182
+ <div class="CategorySlide" style:background-image="{category?.background}" on:click={() => openCategory(category.id)}>
183
183
  <div class="CategorySlideTopContainer">
184
184
  {#if titletype == 'logo'}
185
185
  <img class="CategorySlideLogo" src="{category.icon}" alt="{category.name} icon">
@@ -279,8 +279,6 @@
279
279
  height: 200px;
280
280
  width: 400px;
281
281
  margin-right: 15px;
282
- background: url(https://static.everymatrix.com/cms2/base/_casino/B/B3BEB9DD45D98139D05637186C8E30DC.jpg);
283
- background-size: cover;
284
282
 
285
283
 
286
284
  &TopContainer {