@betorigami/games 2.3.0 → 2.3.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/dist/index.mjs +17 -16
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2062,9 +2062,9 @@ var V8=Object.create;var{getPrototypeOf:W8,defineProperty:$4,getOwnPropertyNames
|
|
|
2062
2062
|
background-color: var(--background-base, #1A1A1A);
|
|
2063
2063
|
border-radius: var(--border-radius, 10px);
|
|
2064
2064
|
height: 40px;
|
|
2065
|
-
outline:
|
|
2066
|
-
outline-offset: -
|
|
2067
|
-
transition:
|
|
2065
|
+
outline: 1px solid transparent;
|
|
2066
|
+
outline-offset: -1px;
|
|
2067
|
+
transition: opacity var(--anim-duration-fast) var(--ease-out-cubic);
|
|
2068
2068
|
}
|
|
2069
2069
|
|
|
2070
2070
|
.input-wrapper:has(.input-addon-buttons) {
|
|
@@ -2917,6 +2917,7 @@ var V8=Object.create;var{getPrototypeOf:W8,defineProperty:$4,getOwnPropertyNames
|
|
|
2917
2917
|
border-right: 1px solid var(--background-quaternary, #373737);
|
|
2918
2918
|
padding-right: 12px;
|
|
2919
2919
|
margin-right: 12px;
|
|
2920
|
+
--button-border-radius: 1000px;
|
|
2920
2921
|
}
|
|
2921
2922
|
|
|
2922
2923
|
.icon-active path { fill: var(--primary-color, #DAFF01); }
|
|
@@ -4044,7 +4045,6 @@ var V8=Object.create;var{getPrototypeOf:W8,defineProperty:$4,getOwnPropertyNames
|
|
|
4044
4045
|
width: 100%;
|
|
4045
4046
|
--keno-grid-desktop-side-padding: 0;
|
|
4046
4047
|
--keno-grid-max-width: 100%;
|
|
4047
|
-
--keno-grid-aspect-ratio: auto;
|
|
4048
4048
|
}
|
|
4049
4049
|
|
|
4050
4050
|
origami-limbo-multiplier {
|
|
@@ -5797,7 +5797,7 @@ var V8=Object.create;var{getPrototypeOf:W8,defineProperty:$4,getOwnPropertyNames
|
|
|
5797
5797
|
width: 100%;
|
|
5798
5798
|
max-width: var(--keno-grid-max-width, 650px);
|
|
5799
5799
|
gap: 8px;
|
|
5800
|
-
aspect-ratio:
|
|
5800
|
+
aspect-ratio: 8/5;
|
|
5801
5801
|
}
|
|
5802
5802
|
|
|
5803
5803
|
.keno-grid-row {
|
|
@@ -9419,16 +9419,18 @@ var V8=Object.create;var{getPrototypeOf:W8,defineProperty:$4,getOwnPropertyNames
|
|
|
9419
9419
|
min-width: inherit;
|
|
9420
9420
|
color: var(--primary-text-color, #FFFFFF);
|
|
9421
9421
|
background-color: var(--background-base, #1A1A1A);
|
|
9422
|
-
border:
|
|
9422
|
+
border: none;
|
|
9423
9423
|
border-radius: var(--border-radius, 10px);
|
|
9424
|
-
outline:
|
|
9424
|
+
outline: 2px solid transparent;
|
|
9425
|
+
outline-offset: -2px;
|
|
9425
9426
|
margin: 0;
|
|
9426
9427
|
cursor: pointer;
|
|
9427
9428
|
appearance: none;
|
|
9428
9429
|
font-size: 14px;
|
|
9430
|
+
line-height: 40px;
|
|
9429
9431
|
white-space: nowrap;
|
|
9430
9432
|
text-overflow: ellipsis;
|
|
9431
|
-
transition:
|
|
9433
|
+
transition: outline-color var(--hover-duration) var(--ease-default), opacity var(--anim-duration-fast) var(--ease-out-cubic);
|
|
9432
9434
|
-webkit-user-select: none;
|
|
9433
9435
|
user-select: none;
|
|
9434
9436
|
-webkit-tap-highlight-color: transparent;
|
|
@@ -9442,37 +9444,36 @@ var V8=Object.create;var{getPrototypeOf:W8,defineProperty:$4,getOwnPropertyNames
|
|
|
9442
9444
|
|
|
9443
9445
|
@media (hover: hover) {
|
|
9444
9446
|
.select-input:not(:disabled):hover {
|
|
9445
|
-
|
|
9447
|
+
outline-color: var(--primary-color, #DAFF01);
|
|
9446
9448
|
}
|
|
9447
9449
|
}
|
|
9448
9450
|
|
|
9449
9451
|
.select-input:not(:disabled):active,
|
|
9450
9452
|
.select-input:not(:disabled):focus:active {
|
|
9451
|
-
|
|
9453
|
+
outline-color: var(--primary-color, #DAFF01);
|
|
9452
9454
|
}
|
|
9453
9455
|
|
|
9454
9456
|
.select-input:focus {
|
|
9455
|
-
outline:
|
|
9456
|
-
border-color: var(--primary-color, #DAFF01);
|
|
9457
|
+
outline-color: var(--primary-color, #DAFF01);
|
|
9457
9458
|
}
|
|
9458
9459
|
|
|
9459
9460
|
.select-input.error {
|
|
9460
|
-
|
|
9461
|
+
outline-color: var(--danger-color, #E83A3A);
|
|
9461
9462
|
}
|
|
9462
9463
|
|
|
9463
9464
|
@media (hover: hover) {
|
|
9464
9465
|
.select-input.error:not(:disabled):hover {
|
|
9465
|
-
|
|
9466
|
+
outline-color: rgba(233, 17, 60, 0.9);
|
|
9466
9467
|
}
|
|
9467
9468
|
}
|
|
9468
9469
|
|
|
9469
9470
|
.select-input.error:not(:disabled):active,
|
|
9470
9471
|
.select-input.error:not(:disabled):focus:active {
|
|
9471
|
-
|
|
9472
|
+
outline-color: rgba(233, 17, 60, 0.8);
|
|
9472
9473
|
}
|
|
9473
9474
|
|
|
9474
9475
|
.select-input.error:focus {
|
|
9475
|
-
|
|
9476
|
+
outline-color: var(--danger-color, #E83A3A);
|
|
9476
9477
|
}
|
|
9477
9478
|
|
|
9478
9479
|
.select-input.disabled,
|