interface AsukaShellOptions {
    height?: null | string;
    maxHeight?: null | string;
    maxWidth?: null | string;
    width?: null | string;
}

Properties

height?: null | string

Explicit shell height (for example 800px, 80vh, or 100%).

maxHeight?: null | string

Maximum shell height. null keeps it unconstrained.

maxWidth?: null | string

Maximum shell width. null keeps it unconstrained.

width?: null | string

Explicit shell width (for example 1200px, 90vw, or 100%).