Compare commits

...

2 Commits

Author SHA1 Message Date
Aidan Timson
4692a98f46 Restore safe area margins, leave full height width 2026-02-10 12:38:43 +00:00
Aidan Timson
beb84d4c88 Remove safe area for custom panels 2026-02-10 11:09:32 +00:00

View File

@@ -148,8 +148,8 @@ export class HaPanelCustom extends ReactiveElement {
<style>
iframe {
border: 0;
width: calc(100% - var(--safe-area-inset-right, 0px));
height: calc(100% - var(--safe-area-inset-top, 0px) - var(--safe-area-inset-bottom, 0px));
width: 100%;
height: 100%;
display: block;
background-color: var(--primary-background-color);
margin-top: var(--safe-area-inset-top);