Skip to content

Commit ab1c736

Browse files
committed
Revert
1 parent 7a16c51 commit ab1c736

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/components/ha-sidebar.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ import {
2222
eventOptions,
2323
property,
2424
query,
25-
queryAll,
2625
state,
2726
} from "lit/decorators";
2827
import { classMap } from "lit/directives/class-map";
@@ -211,8 +210,6 @@ class HaSidebar extends SubscribeMixin(LitElement) {
211210

212211
@query(".tooltip") private _tooltip!: HTMLDivElement;
213212

214-
@queryAll("ha-md-list-item") private _listItems!: NodeListOf<HaMdListItem>;
215-
216213
public hassSubscribe() {
217214
return [
218215
subscribeFrontendUserData(
@@ -325,7 +322,6 @@ class HaSidebar extends SubscribeMixin(LitElement) {
325322
if (changedProps.has("alwaysExpand")) {
326323
toggleAttribute(this, "expanded", this.alwaysExpand);
327324
}
328-
329325
if (!changedProps.has("hass")) {
330326
return;
331327
}
@@ -913,6 +909,11 @@ class HaSidebar extends SubscribeMixin(LitElement) {
913909
padding: 4px;
914910
font-weight: var(--ha-font-weight-medium);
915911
}
912+
913+
.menu ha-icon-button {
914+
-webkit-transform: scaleX(var(--scale-direction));
915+
transform: scaleX(var(--scale-direction));
916+
}
916917
`,
917918
];
918919
}

0 commit comments

Comments
 (0)