Improve background-editor background-attachment alignment (#23615)

This commit is contained in:
Wendelin
2025-01-07 14:48:28 +01:00
committed by GitHub
parent e137e695ec
commit 6e90afc5bd
3 changed files with 30 additions and 2 deletions

View File

@@ -87,6 +87,16 @@ export class HaButtonToggleSelector extends LitElement {
static styles = css`
:host {
position: relative;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 8px;
align-items: center;
}
@media all and (max-width: 600px) {
ha-button-toggle-group {
flex: 1;
}
}
`;
}