@lvce-editor/ports-view 0.6.0 → 0.6.1
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/portsViewWorkerMain.js +10 -2
- package/package.json +1 -1
|
@@ -2192,11 +2192,19 @@ const getCss = state => {
|
|
|
2192
2192
|
} = state;
|
|
2193
2193
|
const relativeY = -(deltaY % itemHeight);
|
|
2194
2194
|
return `.Ports {
|
|
2195
|
-
|
|
2195
|
+
flex: 1 1 auto;
|
|
2196
2196
|
}
|
|
2197
2197
|
|
|
2198
2198
|
.PortsTable {
|
|
2199
|
-
|
|
2199
|
+
flex: 1 1 auto;
|
|
2200
|
+
}
|
|
2201
|
+
|
|
2202
|
+
.PortsTableHeader {
|
|
2203
|
+
flex: 0 0 ${headerHeight}px;
|
|
2204
|
+
}
|
|
2205
|
+
|
|
2206
|
+
.PortsFooter {
|
|
2207
|
+
flex: 0 0 ${footerHeight}px;
|
|
2200
2208
|
}
|
|
2201
2209
|
|
|
2202
2210
|
.PortsTableBody > .PortsTableRow:first-child {
|