mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-06-20 09:35:11 +08:00

* feat: add list and table views for logs * chore: some of the changes are updated * chore: some of the refactoring is done * chore: px to updated to rem * chore: constant is moved to local storage * refactor: some of the refactoring is updated * chore: some of the changes are updated * fix: resize log table issue * chore: logs is updated * chore: resize header is updated * chore: font observer is added in package json and hook is added for same * chore: no logs text is updated * chore: no logs text is updated * chore: updated some feedback in raw logs line * chore: types is added --------- Co-authored-by: Palash Gupta <palashgdev@gmail.com> Co-authored-by: Pranay Prateek <pranay@signoz.io> Co-authored-by: Vishal Sharma <makeavish786@gmail.com> Co-authored-by: Chintan Sudani <csudani7@gmail.com>
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,
|
|
};
|