@ximax/layout
Version:
A flexible and responsive layout system for Vue3 applications
12 lines (11 loc) • 398 B
TypeScript
import { AdminLayoutProps, LayoutCssVars } from '../../types';
/** The id of the scroll element of the layout */
export declare const LAYOUT_SCROLL_EL_ID = "__SCROLL_EL_ID__";
/** The max z-index of the layout */
export declare const LAYOUT_MAX_Z_INDEX = 100;
/**
* Create layout css vars
*
* @param props
*/
export declare function createLayoutCssVars(props: AdminLayoutProps): LayoutCssVars;