@mideind/netskrafl-react 3.4.2 → 3.4.3
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/esm/css/netskrafl.css +14 -8
- package/package.json +1 -1
|
@@ -901,6 +901,10 @@ div.netskrafl-container.legacy-colors div.netskrafl-freshtile {
|
|
|
901
901
|
color: black;
|
|
902
902
|
}
|
|
903
903
|
|
|
904
|
+
div.netskrafl-container.legacy-colors div.netskrafl-freshtile.netskrafl-blanktile {
|
|
905
|
+
color: var(--blank-tile);
|
|
906
|
+
}
|
|
907
|
+
|
|
904
908
|
div.netskrafl-container.legacy-colors div.rack td.opp {
|
|
905
909
|
border-width: 2px;
|
|
906
910
|
border-color: var(--middle-shadow);
|
|
@@ -4109,7 +4113,7 @@ div.netskrafl-freshtile {
|
|
|
4109
4113
|
}
|
|
4110
4114
|
|
|
4111
4115
|
div.netskrafl-freshtile.netskrafl-blanktile {
|
|
4112
|
-
color: var(--
|
|
4116
|
+
color: var(--blank-tile);
|
|
4113
4117
|
}
|
|
4114
4118
|
|
|
4115
4119
|
.netskrafl-container div.highlight0 {
|
|
@@ -6618,7 +6622,7 @@ div.netskrafl-container input[type="checkbox"] {
|
|
|
6618
6622
|
padding-top: 1px;
|
|
6619
6623
|
background-color: transparent;
|
|
6620
6624
|
transform: scale(0.92);
|
|
6621
|
-
transform: scale(
|
|
6625
|
+
transform: scale(clamp(0.92, calc((100dvh - 16px) / 408px), 1));
|
|
6622
6626
|
transform-origin: right top;
|
|
6623
6627
|
}
|
|
6624
6628
|
.netskrafl-container div.rightcol {
|
|
@@ -6900,16 +6904,18 @@ div.netskrafl-container input[type="checkbox"] {
|
|
|
6900
6904
|
zoom remains at default (1). */
|
|
6901
6905
|
:has([data-slot="sidebar"][data-state="collapsed"]) div.netskrafl-inner {
|
|
6902
6906
|
zoom: 0.92;
|
|
6903
|
-
zoom:
|
|
6904
|
-
|
|
6905
|
-
|
|
6907
|
+
zoom: clamp(
|
|
6908
|
+
0.92,
|
|
6909
|
+
calc((100vw - var(--sidebar-width-icon, 4rem) - 24px) / 1024px),
|
|
6910
|
+
1
|
|
6906
6911
|
);
|
|
6907
6912
|
}
|
|
6908
6913
|
:has([data-slot="sidebar"][data-state="expanded"]) div.netskrafl-inner {
|
|
6909
6914
|
zoom: 0.77;
|
|
6910
|
-
zoom:
|
|
6911
|
-
|
|
6912
|
-
|
|
6915
|
+
zoom: clamp(
|
|
6916
|
+
0.77,
|
|
6917
|
+
calc((100vw - var(--sidebar-width, 14rem) - 12px) / 1024px),
|
|
6918
|
+
1
|
|
6913
6919
|
);
|
|
6914
6920
|
}
|
|
6915
6921
|
.netskrafl-container div.game-container {
|