1
0
mirror of https://github.com/home-assistant/frontend.git synced 2025-12-20 10:48:44 +00:00

Fix Render Pane on Mobile (#11856)

This commit is contained in:
Zack Barett
2022-02-25 13:51:55 -06:00
committed by GitHub
parent 4031009c26
commit 546461b70f

View File

@@ -289,6 +289,12 @@ class HaPanelDevTemplate extends LitElement {
.rendered.error { .rendered.error {
color: var(--error-color); color: var(--error-color);
} }
@media all and (max-width: 870px) {
.render-pane {
max-width: 100%;
}
}
`, `,
]; ];
} }