Skip to content
Snippets Groups Projects
Commit 48722048 authored by Bekerle, Patrizio's avatar Bekerle, Patrizio :fire: Committed by Reiter, Christoph
Browse files

Fix login hover again

parent be3d6a29
No related branches found
No related tags found
No related merge requests found
...@@ -331,7 +331,7 @@ class VPUAuth extends LitElement { ...@@ -331,7 +331,7 @@ class VPUAuth extends LitElement {
fill: var(--vpu-light); fill: var(--vpu-light);
} }
.loginbox .icon { .loginbox .icon, .authbox {
display: inline-block; display: inline-block;
} }
...@@ -409,8 +409,8 @@ class VPUAuth extends LitElement { ...@@ -409,8 +409,8 @@ class VPUAuth extends LitElement {
render() { render() {
commonUtils.initAssetBaseURL('vpu-auth-src'); commonUtils.initAssetBaseURL('vpu-auth-src');
return html` return html`
<div> <div class="authbox">
${this.loggedIn ? this.renderLoggedIn() : this.renderLoggedOut()} ${this.loggedIn ? this.renderLoggedIn() : this.renderLoggedOut()}
</div> </div>
`; `;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment