@eturnity/eturnity_reusable_components 7.30.3-EPDM-10576.2 → 7.30.3-EPDM-10576.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/package.json
CHANGED
@@ -328,6 +328,7 @@
|
|
328
328
|
position: absolute;
|
329
329
|
margin-top: 4px;
|
330
330
|
max-height: 70vh;
|
331
|
+
overflow-y: auto;
|
331
332
|
background-color: ${(props) => props.theme.colors.white};
|
332
333
|
min-width: 100%;
|
333
334
|
width: max-content;
|
@@ -340,7 +341,7 @@
|
|
340
341
|
const ColAttrs = { numCols: Number, hasActiveView: Boolean }
|
341
342
|
const ColumnWrapper = styled('div', ColAttrs)`
|
342
343
|
display: grid;
|
343
|
-
max-height:
|
344
|
+
max-height: 50vh;
|
344
345
|
overflow-y: auto;
|
345
346
|
grid-template-columns: repeat(${(props) => props.numCols}, auto);
|
346
347
|
|