@everymatrix/casino-game-page 0.0.192 → 0.0.196
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-game-page",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.196",
|
4
4
|
"main": "dist/casino-game-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": "9809bd993cd1842fb5832ca5b3269eb33d0be029"
|
40
40
|
}
|
@@ -293,7 +293,7 @@
|
|
293
293
|
}
|
294
294
|
|
295
295
|
function exitHandler() {
|
296
|
-
if (!document.webkitIsFullScreen && !document.mozFullScreen && !document.msFullscreenElement) {
|
296
|
+
if (!document.webkitIsFullScreen && !document.mozFullScreen && !document.msFullscreenElement && isFullscreen) {
|
297
297
|
handleIframeSize();
|
298
298
|
}
|
299
299
|
}
|
@@ -487,7 +487,7 @@
|
|
487
487
|
<div class="PanicSection">
|
488
488
|
<svg class="w-1 h-1" fill="none" stroke="white" width="34px" height="34px" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
|
489
489
|
<p>{$_('gamePage.break')}</p>
|
490
|
-
<button class="Button">{$_('gamePage.breakButton')}</button>
|
490
|
+
<button class="Button" on:click={() => PanicAction()}>{$_('gamePage.breakButton')}</button>
|
491
491
|
</div>
|
492
492
|
{/if}
|
493
493
|
{#if isFullscreen}
|
@@ -553,6 +553,10 @@
|
|
553
553
|
@return $value * $multiplicator;
|
554
554
|
}
|
555
555
|
|
556
|
+
:host {
|
557
|
+
font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
|
558
|
+
}
|
559
|
+
|
556
560
|
.BottomGame {
|
557
561
|
padding-left: 60px;
|
558
562
|
padding-right: 60px;
|