Fix iOS dashboard scroll issue (#16129)

This commit is contained in:
Paul Bottein 2023-04-10 22:17:37 +02:00 committed by GitHub
parent 45d9b33c75
commit 97f983e34a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 0 deletions

View File

@ -979,6 +979,7 @@ export class HaDataTable extends LitElement {
}
lit-virtualizer {
contain: size layout !important;
overscroll-behavior: contain;
}
`,
];

View File

@ -126,6 +126,7 @@ class PanelDeveloperTools extends LitElement {
display: block;
height: calc(100% - var(--header-height) - 48px);
overflow: auto;
overscroll-behavior: contain;
}
paper-tabs {
margin-left: max(env(safe-area-inset-left), 24px);

View File

@ -1069,6 +1069,7 @@ class HUIRoot extends LitElement {
var(--primary-background-color)
);
overflow: auto;
overscroll-behavior: contain;
width: 100%;
height: 100%;
transform: translateZ(0);