Force ltr again in info panel (#3494)

This commit is contained in:
Yosi Levy 2019-08-16 07:27:36 +03:00 committed by Paulus Schoutsen
parent 46f3a38b7c
commit bcb26bd960

View File

@ -117,9 +117,11 @@ class HaPanelDevInfo extends LitElement {
</mwc-button> </mwc-button>
</p> </p>
</div> </div>
<system-health-card .hass=${this.hass}></system-health-card> <div class="content">
<system-log-card .hass=${this.hass}></system-log-card> <system-health-card .hass=${this.hass}></system-health-card>
<error-log-card .hass=${this.hass}></error-log-card> <system-log-card .hass=${this.hass}></system-log-card>
<error-log-card .hass=${this.hass}></error-log-card>
</div>
`; `;
} }
@ -155,7 +157,6 @@ class HaPanelDevInfo extends LitElement {
} }
.content { .content {
padding: 16px 0px 16px 0;
direction: ltr; direction: ltr;
} }