make open in new icon a bit smaller (#14125)

This commit is contained in:
Bram Kragten 2022-10-19 10:49:56 +02:00 committed by GitHub
parent 62de708b2b
commit 6393d59035
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -93,7 +93,10 @@ export class HaIntegrationListItem extends ListItemBase {
>${this.hass.localize(
"ui.panel.config.integrations.config_entry.yaml_only"
)}</paper-tooltip
><ha-svg-icon .path=${mdiOpenInNew}></ha-svg-icon
><ha-svg-icon
.path=${mdiOpenInNew}
class="open-in-new"
></ha-svg-icon
></span>`
: html`<ha-icon-next></ha-icon-next>`}
</span>`;
@ -141,6 +144,10 @@ export class HaIntegrationListItem extends ListItemBase {
ha-icon-next {
margin-right: 8px;
}
.open-in-new {
--mdc-icon-size: 22px;
padding: 1px;
}
`,
];
}