Skip to content
Snippets Groups Projects
Commit b381bd17 authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

login-button: Use an array to concat styles

lit-html no longer allows merging them in literals.
parent 4674fa04
No related branches found
No related tags found
No related merge requests found
......@@ -109,9 +109,9 @@ export class LoginButton extends ScopedElementsMixin(LitElement) {
static get styles() {
// language=css
return css`
${commonStyles.getThemeCSS()}
return [
commonStyles.getThemeCSS(),
css`
:host {
display: inline-block;
}
......@@ -149,7 +149,8 @@ export class LoginButton extends ScopedElementsMixin(LitElement) {
.login-box .label {
padding-left: 0.2em;
}
`;
`
];
}
render() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment