mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-19 00:17:00 +00:00
13 lines
254 B
TypeScript
13 lines
254 B
TypeScript
|
|
import { TableProps } from 'antd';
|
||
|
|
|
||
|
|
export const defaultCellStyle: React.CSSProperties = {
|
||
|
|
paddingTop: 4,
|
||
|
|
paddingBottom: 6,
|
||
|
|
paddingRight: 8,
|
||
|
|
paddingLeft: 8,
|
||
|
|
};
|
||
|
|
|
||
|
|
export const tableScroll: TableProps<Record<string, unknown>>['scroll'] = {
|
||
|
|
x: true,
|
||
|
|
};
|