@betorigami/games 1.14.3 → 1.14.4
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/dist/index.mjs +31 -7
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -14529,14 +14529,34 @@ var Q9=Object.create;var{getPrototypeOf:X9,defineProperty:D6,getOwnPropertyNames
|
|
|
14529
14529
|
transform: translateY(calc(var(--card-height) * -0.85));
|
|
14530
14530
|
}
|
|
14531
14531
|
|
|
14532
|
-
|
|
14533
|
-
|
|
14534
|
-
|
|
14535
|
-
|
|
14532
|
+
.card-stack {
|
|
14533
|
+
position: relative;
|
|
14534
|
+
width: fit-content;
|
|
14535
|
+
padding-bottom: 8px;
|
|
14536
|
+
overflow: hidden;
|
|
14537
|
+
border-radius: var(--border-radius, 10px);
|
|
14536
14538
|
}
|
|
14537
14539
|
|
|
14538
|
-
|
|
14539
|
-
|
|
14540
|
+
.stack-card {
|
|
14541
|
+
position: absolute;
|
|
14542
|
+
top: 0;
|
|
14543
|
+
left: 0;
|
|
14544
|
+
filter: drop-shadow(0 0 0.25em #0710174d);
|
|
14545
|
+
}
|
|
14546
|
+
|
|
14547
|
+
.stack-card-3 {
|
|
14548
|
+
z-index: 1;
|
|
14549
|
+
transform: translateY(8px);
|
|
14550
|
+
}
|
|
14551
|
+
|
|
14552
|
+
.stack-card-2 {
|
|
14553
|
+
z-index: 2;
|
|
14554
|
+
transform: translateY(4px);
|
|
14555
|
+
}
|
|
14556
|
+
|
|
14557
|
+
.stack-card-1 {
|
|
14558
|
+
position: relative;
|
|
14559
|
+
z-index: 3;
|
|
14540
14560
|
}
|
|
14541
14561
|
|
|
14542
14562
|
.bac-bet-container {
|
|
@@ -14696,7 +14716,11 @@ var Q9=Object.create;var{getPrototypeOf:X9,defineProperty:D6,getOwnPropertyNames
|
|
|
14696
14716
|
<div class="game-content">
|
|
14697
14717
|
<div class=${B({"bac-container":!0,"has-win-popup":this.gameWinPopupShowing})}>
|
|
14698
14718
|
<div class="bac-floating-card" id="card-stack">
|
|
14699
|
-
<
|
|
14719
|
+
<div class="card-stack">
|
|
14720
|
+
<origami-card class="stack-card stack-card-3" .card=${{rank:"Ace",suit:"Hearts"}} ?faceDown=${!0} cardId="stack-3"></origami-card>
|
|
14721
|
+
<origami-card class="stack-card stack-card-2" .card=${{rank:"Ace",suit:"Hearts"}} ?faceDown=${!0} cardId="stack-2"></origami-card>
|
|
14722
|
+
<origami-card class="stack-card stack-card-1" .card=${{rank:"Ace",suit:"Hearts"}} ?faceDown=${!0} cardId="stack-1"></origami-card>
|
|
14723
|
+
</div>
|
|
14700
14724
|
</div>
|
|
14701
14725
|
|
|
14702
14726
|
<div class="bac-dealer-wrapper">
|