fix(web): allow mobile dashboard scrolling (#28051) (#28577)

* fix(web): allow mobile dashboard scrolling

* fix(web): combine mobile root scroll rules

---------

Co-authored-by: Wesley Simplicio <wesley.simplicio.ext@siemens-energy.com>
This commit is contained in:
Wesley Simplicio 2026-05-28 01:02:50 -03:00 committed by GitHub
parent c9410b3462
commit 10f13c3881
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -124,6 +124,18 @@ code, kbd, pre, samp, .font-mono, .font-mono-ui {
overflow: hidden;
}
@media (max-width: 768px) {
html,
body,
#root {
min-height: 100dvh;
height: auto;
max-height: none;
overflow-x: hidden;
overflow-y: auto;
}
}
/* Nousnet's hermes-agent layout bumps `small` and `code` to readable
dashboard sizes. Keep in sync. */
small { font-size: 1.0625rem; }