Responsivity

In client/ui/responsivity.css you will find basic media queries to match different screen sizes.

/* DEFAULT SYSTEM SIZE IS 1485px */

@media (min-width: 1920px) {
    .report-system {
        scale: 1.0;
    }
}

@media (min-width: 2560px) {
    .report-system {
        scale: 1.0;
    }
}

Default report system width with reports is 1485px You could add as many breakpoints as you want. Transformation is always matched by minimal screen width. Scale multiplies report system size. 1.2 is report_system size * 1.2

Last updated