nsgm-cli 2.1.45 → 2.1.47
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.
|
@@ -195,11 +195,13 @@ export const StyledTable: any = styled(Table)`
|
|
|
195
195
|
.ant-table-container {
|
|
196
196
|
position: relative;
|
|
197
197
|
border-radius: 12px 12px 0 0;
|
|
198
|
-
overflow: auto;
|
|
198
|
+
overflow-x: auto;
|
|
199
|
+
overflow-y: hidden;
|
|
199
200
|
}
|
|
200
201
|
|
|
201
202
|
.ant-table-content {
|
|
202
|
-
overflow: auto;
|
|
203
|
+
overflow-x: auto;
|
|
204
|
+
overflow-y: hidden;
|
|
203
205
|
}
|
|
204
206
|
|
|
205
207
|
.ant-table-thead > tr > th {
|
|
@@ -401,6 +403,7 @@ export const StyledTable: any = styled(Table)`
|
|
|
401
403
|
/* 横向滚动条样式 */
|
|
402
404
|
.ant-table-body {
|
|
403
405
|
overflow-x: auto !important;
|
|
406
|
+
overflow-y: hidden !important;
|
|
404
407
|
|
|
405
408
|
&::-webkit-scrollbar {
|
|
406
409
|
height: 8px;
|