Trilium Frontend API
    Preparing search index...

    Type Alias BoxStyleSides

    An object describing values associated with the sides of a box, for instance margins, paddings, border widths, border colors, etc.

    const margin = {
    top: '1px',
    right: '3px',
    bottom: '3px',
    left: '7px'
    };

    const borderColor = {
    top: 'red',
    right: 'blue',
    bottom: 'blue',
    left: 'red'
    };
    type BoxStyleSides = {
        bottom: undefined | string;
        left: undefined | string;
        right: undefined | string;
        top: undefined | string;
    }
    Index

    Properties

    Properties

    bottom: undefined | string

    Bottom side value.

    left: undefined | string

    Left side value.

    right: undefined | string

    Right side value.

    top: undefined | string

    Top side value.