@landtrustinc/design-system 1.2.5-beta.1 → 1.2.5-beta.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.js +5 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4932,7 +4932,7 @@ var panelContainer = import_react25.css`
|
|
|
4932
4932
|
bottom: calc(100% + var(--spacing-2));
|
|
4933
4933
|
z-index: 1;
|
|
4934
4934
|
|
|
4935
|
-
@media (max-width: calc(${screens.
|
|
4935
|
+
@media (max-width: calc(${screens.md} - 1px)) {
|
|
4936
4936
|
position: fixed;
|
|
4937
4937
|
inset: 0;
|
|
4938
4938
|
display: flex;
|
|
@@ -4946,13 +4946,11 @@ var panelCard = (width2) => import_react25.css`
|
|
|
4946
4946
|
border: 1px solid var(--border-primary);
|
|
4947
4947
|
border-radius: var(--radius-lg);
|
|
4948
4948
|
padding: var(--spacing-4);
|
|
4949
|
-
overflow: auto;
|
|
4950
4949
|
box-shadow: 0 0 var(--shadow-blur-lg, 24px) var(--shadow-spread-xs, -4px)
|
|
4951
4950
|
rgba(17, 17, 17, 0.1);
|
|
4952
4951
|
|
|
4953
4952
|
/* Width passed from props (desktop/tablet) */
|
|
4954
4953
|
width: ${typeof width2 === "number" ? `${width2}px` : width2};
|
|
4955
|
-
max-height: 85vh;
|
|
4956
4954
|
|
|
4957
4955
|
/* Scale animation on open */
|
|
4958
4956
|
transform-origin: bottom right;
|
|
@@ -4967,7 +4965,7 @@ var panelCard = (width2) => import_react25.css`
|
|
|
4967
4965
|
}
|
|
4968
4966
|
}
|
|
4969
4967
|
|
|
4970
|
-
@media (max-width: calc(${screens.
|
|
4968
|
+
@media (max-width: calc(${screens.md} - 1px)) {
|
|
4971
4969
|
width: 100vw;
|
|
4972
4970
|
height: 100vh;
|
|
4973
4971
|
max-height: 100vh;
|
|
@@ -5136,9 +5134,11 @@ var containerStyles = import_react27.css`
|
|
|
5136
5134
|
flex-direction: column;
|
|
5137
5135
|
min-height: 0;
|
|
5138
5136
|
height: 765px;
|
|
5137
|
+
max-height: 80vh;
|
|
5139
5138
|
|
|
5140
|
-
@media (max-width: calc(${screens.
|
|
5139
|
+
@media (max-width: calc(${screens.md} - 1px)) {
|
|
5141
5140
|
height: 100%;
|
|
5141
|
+
max-height: 100%;
|
|
5142
5142
|
}
|
|
5143
5143
|
`;
|
|
5144
5144
|
var thinkingRowStyles = import_react27.css`
|