Fix Wrap menu and remove menu title (#12505)

This commit is contained in:
Zack Barett 2022-04-28 21:23:23 -05:00 committed by GitHub
parent 51f971337d
commit cadbe45bab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 12 deletions

View File

@ -55,6 +55,7 @@ export class HaClickableListItem extends ListItemBase {
align-items: center;
padding-left: var(--mdc-list-side-padding, 20px);
padding-right: var(--mdc-list-side-padding, 20px);
overflow: hidden;
}
`,
];

View File

@ -59,13 +59,6 @@ class HaNavigationList extends LitElement {
:host {
--mdc-list-vertical-padding: 0;
}
a {
text-decoration: none;
color: var(--primary-text-color);
position: relative;
display: block;
outline: 0;
}
ha-svg-icon,
ha-icon-next {
color: var(--secondary-text-color);

View File

@ -195,11 +195,6 @@ class HaConfigDashboard extends LitElement {
</ha-card>`
: ""}
<ha-card outlined>
${this.narrow && canInstallUpdates.length
? html`<div class="title">
${this.hass.localize("panel.config")}
</div>`
: ""}
<ha-config-navigation
.hass=${this.hass}
.narrow=${this.narrow}