Add margin to text next to chip (#8726)

* Add margin to text next to chip

* Increase margin to 8px
This commit is contained in:
Philip Allgaier 2021-03-27 12:59:30 +01:00 committed by GitHub
parent 36020373cd
commit bf802628b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -275,7 +275,7 @@ export class QuickBar extends LitElement {
>
</span>
<span>${item.primaryText}</span>
<span class="command-text">${item.primaryText}</span>
${item.altText
? html`
<span slot="secondary" class="item-text secondary"
@ -621,6 +621,10 @@ export class QuickBar extends LitElement {
--ha-chip-text-color: black;
}
span.command-text {
margin-left: 8px;
}
.uni-virtualizer-host {
display: block;
position: relative;