This commit is contained in:
Zack Arnett 2020-05-16 05:15:04 -04:00 committed by GitHub
parent a1ee9ad48b
commit 0321e55a42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -98,7 +98,11 @@ export class HuiCardPicker extends LitElement {
)} )}
</div> </div>
<div class="cards-container"> <div class="cards-container">
<div class="card" @click=${this._cardPicked} .config=${{ type: "" }}> <div
class="card manual"
@click=${this._cardPicked}
.config=${{ type: "" }}
>
<div class="preview description"> <div class="preview description">
${this.hass!.localize( ${this.hass!.localize(
`ui.panel.lovelace.editor.card.generic.manual_description` `ui.panel.lovelace.editor.card.generic.manual_description`
@ -258,6 +262,10 @@ export class HuiCardPicker extends LitElement {
height: 100%; height: 100%;
z-index: 1; z-index: 1;
} }
.manual {
max-width: none;
}
`, `,
]; ];
} }