mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 01:53:33 -06:00
14 lines
415 B
TypeScript
14 lines
415 B
TypeScript
export const GRID_CELL_HEIGHT = 30;
|
|
export const GRID_CELL_VMARGIN = 10;
|
|
export const GRID_COLUMN_COUNT = 24;
|
|
export const REPEAT_DIR_VERTICAL = 'v';
|
|
|
|
export const DEFAULT_PANEL_SPAN = 4;
|
|
export const DEFAULT_ROW_HEIGHT = 250;
|
|
export const MIN_PANEL_HEIGHT = GRID_CELL_HEIGHT * 3;
|
|
|
|
export const LS_PANEL_COPY_KEY = 'panel-copy';
|
|
|
|
export const DASHBOARD_TOOLBAR_HEIGHT = 55;
|
|
export const DASHBOARD_TOP_PADDING = 20;
|