@ni/nimble-components 8.6.3 → 9.0.0
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/all-components-bundle.js +4 -4
- package/dist/all-components-bundle.js.map +1 -1
- package/dist/all-components-bundle.min.js +4 -4
- package/dist/all-components-bundle.min.js.map +1 -1
- package/dist/esm/drawer/styles.js +4 -4
- package/dist/esm/drawer/styles.js.map +1 -1
- package/package.json +1 -1
|
@@ -16077,8 +16077,7 @@
|
|
|
16077
16077
|
position: relative;
|
|
16078
16078
|
top: 0px;
|
|
16079
16079
|
bottom: 0px;
|
|
16080
|
-
display:
|
|
16081
|
-
grid-template-rows: max-content auto max-content;
|
|
16080
|
+
display: flex;
|
|
16082
16081
|
flex-direction: column;
|
|
16083
16082
|
box-sizing: border-box;
|
|
16084
16083
|
border-radius: 0px;
|
|
@@ -16115,20 +16114,21 @@
|
|
|
16115
16114
|
|
|
16116
16115
|
::slotted(header) {
|
|
16117
16116
|
padding: ${standardPadding};
|
|
16117
|
+
flex: none;
|
|
16118
16118
|
font: ${titlePlus1Font};
|
|
16119
16119
|
}
|
|
16120
16120
|
|
|
16121
16121
|
::slotted(section) {
|
|
16122
16122
|
padding: ${standardPadding};
|
|
16123
|
-
|
|
16123
|
+
flex: auto;
|
|
16124
16124
|
overflow-y: auto;
|
|
16125
16125
|
}
|
|
16126
16126
|
|
|
16127
16127
|
::slotted(footer) {
|
|
16128
16128
|
padding: ${standardPadding};
|
|
16129
|
+
flex: none;
|
|
16129
16130
|
display: flex;
|
|
16130
16131
|
justify-content: flex-end;
|
|
16131
|
-
grid-row: 3;
|
|
16132
16132
|
border-top: ${borderWidth} solid ${popupBorderColor};
|
|
16133
16133
|
}
|
|
16134
16134
|
`;
|