[feature](webapp) merge query steps to one card

This commit is contained in:
williamhliu
2023-08-29 22:14:14 +08:00
parent 93ca060c45
commit 36fd737440
40 changed files with 994 additions and 496 deletions

View File

@@ -68,8 +68,7 @@ const Table: React.FC<Props> = ({ data, size, onApplyAuth }) => {
}
columns={tableColumns}
dataSource={queryResults}
style={{ width: '100%' }}
// scroll={{ x: 'max-content' }}
style={{ width: '100%', overflowX: 'auto' }}
rowClassName={getRowClassName}
size={size}
/>

View File

@@ -3,8 +3,7 @@
@table-prefix-cls: ~'@{supersonic-chat-prefix}-table';
.@{table-prefix-cls} {
margin-top: 16px;
margin-bottom: 20px;
margin-top: 6px;
&-photo {
display: flex;
@@ -68,9 +67,13 @@
.ant-table-tbody {
.ant-table-cell {
padding: 15px 0;
color: #333;
padding: 12px 2px;
color: var(--text-color);
font-size: 14px;
}
}
.ant-table-pagination.ant-pagination {
margin-bottom: 0;
}
}