@everymatrix/casino-collections-providers 1.7.0 → 1.7.2
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.7.
|
3
|
+
"version": "1.7.2",
|
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": "
|
39
|
+
"gitHead": "d38acb0f8e7dfbaadfc047558a121ec1d5f543f8"
|
40
40
|
}
|
@@ -317,11 +317,11 @@
|
|
317
317
|
align-items: center;
|
318
318
|
}
|
319
319
|
&Logo {
|
320
|
-
max-height: 100px;
|
321
|
-
position: absolute;
|
322
|
-
top: 30%;
|
323
|
-
left: 50%;
|
324
320
|
transform: translate(-50%, -50%);
|
321
|
+
max-width: 175px;
|
322
|
+
top: 30%;
|
323
|
+
max-height: 100%;
|
324
|
+
position: absolute;
|
325
325
|
}
|
326
326
|
&Title {
|
327
327
|
color: var(--emfe-w-color-white, #FFFFFF);
|
@@ -330,26 +330,26 @@
|
|
330
330
|
}
|
331
331
|
&GameContainer {
|
332
332
|
display: flex;
|
333
|
+
width: 40px;
|
333
334
|
justify-content: center;
|
334
|
-
gap:
|
335
|
+
gap: 10%;
|
335
336
|
min-height: 85px;
|
336
337
|
}
|
337
338
|
&GameImage {
|
338
339
|
border-radius: 10px;
|
339
340
|
width: auto;
|
340
|
-
height:
|
341
|
+
height: 55px;
|
341
342
|
object-fit: cover;
|
342
343
|
}
|
343
344
|
&Games{
|
344
345
|
color:white;
|
345
346
|
text-align: center;
|
346
347
|
p{
|
347
|
-
font-size:
|
348
|
-
|
348
|
+
font-size: 8px;
|
349
|
+
display: -webkit-box;
|
350
|
+
-webkit-line-clamp: 1;
|
351
|
+
-webkit-box-orient: vertical;
|
349
352
|
overflow: hidden;
|
350
|
-
height: 20px;
|
351
|
-
width: 90px;
|
352
|
-
white-space: nowrap;
|
353
353
|
}
|
354
354
|
}
|
355
355
|
}
|
@@ -371,12 +371,18 @@
|
|
371
371
|
display: none;
|
372
372
|
}
|
373
373
|
& .CategorySlide {
|
374
|
-
width:
|
374
|
+
width: 80vw;
|
375
375
|
scroll-snap-align: start;
|
376
376
|
}
|
377
377
|
& .ButtonsContainer{
|
378
378
|
display: none;
|
379
379
|
}
|
380
|
+
& .CategorySlideGameImage{
|
381
|
+
border-radius: 10px;
|
382
|
+
width: auto;
|
383
|
+
height: 40px;
|
384
|
+
object-fit: cover;
|
385
|
+
}
|
380
386
|
}
|
381
387
|
|
382
388
|
</style>
|