Compare commits

...

2 Commits

Author SHA1 Message Date
Aidan Timson 36581b8f82 Slightly taller 2026-03-24 10:51:00 +00:00
Aidan Timson 5ee6e60c34 Make more info adaptive bottom sheet height match tallest more info dialog
Lights with favorites and effects is the tallest I could find
2026-03-24 10:51:00 +00:00
+6 -3
View File
@@ -985,13 +985,16 @@ export class MoreInfoDialog extends ScrollableFadeMixin(LitElement) {
haStyleScrollbar,
css`
:host {
--ha-bottom-sheet-height: calc(
--ha-bottom-sheet-max-height: calc(
100vh - max(var(--safe-area-inset-top), 48px)
);
--ha-bottom-sheet-height: calc(
--ha-bottom-sheet-max-height: calc(
100dvh - max(var(--safe-area-inset-top), 48px)
);
--ha-bottom-sheet-max-height: var(--ha-bottom-sheet-height);
--ha-bottom-sheet-height: min(
810px,
var(--ha-bottom-sheet-max-height)
);
}
ha-adaptive-dialog {