@atlaskit/page
Version:
A page layout organizes sections on a page using a grid and grid columns.
25 lines (24 loc) • 810 B
TypeScript
export declare const defaultGridColumns = 12;
export declare const defaultGridColumnWidth: number;
export declare const spacingMapping: {
readonly comfortable: number;
readonly cosy: number;
readonly compact: number;
};
export type GridSpacing = keyof typeof spacingMapping;
export declare const defaultSpacing = "cosy";
export declare const defaultBannerHeight = 52;
export declare const defaultMedium = 0;
export declare const defaultLayout = "fixed";
/**
* The number of available columns in each row.
*/
export declare const varColumnsNum = "--ds-columns-num";
/**
* The number of columns that a `GridColumn` covers.
*/
export declare const varColumnSpan = "--ds-column-span";
/**
* The spacing (in `px`) between each column.
*/
export declare const varGridSpacing = "--ds-grid-spacing";