# Responsivity

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

```css
/* 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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://documentation.rcore.cz/paid-resources/rcore_report/responsivity.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
