Compare commits

...

1 Commits

Author SHA1 Message Date
Bram Kragten
46cdeef4b0 Don't make dialog box full height on mobile 2021-03-02 15:49:34 +01:00

View File

@@ -184,6 +184,12 @@ class DialogBox extends LitElement {
.warning {
color: var(--warning-color);
}
@media (max-width: 450px), (max-height: 500px) {
ha-dialog {
--mdc-dialog-min-height: auto;
--mdc-dialog-max-height: auto;
}
}
`,
];
}