Allow discovered integration titles to line wrap (#7468)

This commit is contained in:
Philip Allgaier 2020-10-23 16:43:20 +02:00 committed by GitHub
parent d3fda9a821
commit b8f3fcf00b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -739,6 +739,13 @@ class HaConfigIntegrations extends SubscribeMixin(LitElement) {
}
h2 {
margin-top: 0;
word-wrap: break-word;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
overflow: hidden;
text-overflow: ellipsis;
white-space: normal;
}
`,
];