@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
|
@@ -1750,8 +1750,7 @@ const Ih=window.matchMedia("(prefers-reduced-motion: reduce)"),Sh={slideLeftKeyf
|
|
|
1750
1750
|
position: relative;
|
|
1751
1751
|
top: 0px;
|
|
1752
1752
|
bottom: 0px;
|
|
1753
|
-
display:
|
|
1754
|
-
grid-template-rows: max-content auto max-content;
|
|
1753
|
+
display: flex;
|
|
1755
1754
|
flex-direction: column;
|
|
1756
1755
|
box-sizing: border-box;
|
|
1757
1756
|
border-radius: 0px;
|
|
@@ -1784,20 +1783,21 @@ const Ih=window.matchMedia("(prefers-reduced-motion: reduce)"),Sh={slideLeftKeyf
|
|
|
1784
1783
|
|
|
1785
1784
|
::slotted(header) {
|
|
1786
1785
|
padding: ${wn};
|
|
1786
|
+
flex: none;
|
|
1787
1787
|
font: ${kn};
|
|
1788
1788
|
}
|
|
1789
1789
|
|
|
1790
1790
|
::slotted(section) {
|
|
1791
1791
|
padding: ${wn};
|
|
1792
|
-
|
|
1792
|
+
flex: auto;
|
|
1793
1793
|
overflow-y: auto;
|
|
1794
1794
|
}
|
|
1795
1795
|
|
|
1796
1796
|
::slotted(footer) {
|
|
1797
1797
|
padding: ${wn};
|
|
1798
|
+
flex: none;
|
|
1798
1799
|
display: flex;
|
|
1799
1800
|
justify-content: flex-end;
|
|
1800
|
-
grid-row: 3;
|
|
1801
1801
|
border-top: ${yn} solid ${mn};
|
|
1802
1802
|
}
|
|
1803
1803
|
`
|