mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-17 15:36:48 +00:00
34 lines
751 B
TypeScript
34 lines
751 B
TypeScript
import { TableProps } from 'antd';
|
|
import { CSSProperties } from 'react';
|
|
|
|
export function getDefaultCellStyle(isDarkMode?: boolean): CSSProperties {
|
|
return {
|
|
paddingTop: 4,
|
|
paddingBottom: 6,
|
|
paddingRight: 8,
|
|
paddingLeft: 8,
|
|
color: isDarkMode ? 'var(--bg-vanilla-400)' : 'var(--bg-slate-400)',
|
|
fontSize: '14px',
|
|
fontStyle: 'normal',
|
|
fontWeight: 400,
|
|
lineHeight: '18px',
|
|
letterSpacing: '-0.07px',
|
|
marginBottom: '0px',
|
|
minWidth: '10rem',
|
|
width: '10rem',
|
|
};
|
|
}
|
|
|
|
export const defaultTableStyle: CSSProperties = {
|
|
minWidth: '40rem',
|
|
maxWidth: '60rem',
|
|
};
|
|
|
|
export const defaultListViewPanelStyle: CSSProperties = {
|
|
maxWidth: '40rem',
|
|
};
|
|
|
|
export const tableScroll: TableProps<Record<string, unknown>>['scroll'] = {
|
|
x: true,
|
|
};
|