diff --git a/ogWebconsole/src/app/components/login/login.component.css b/ogWebconsole/src/app/components/login/login.component.css index 13f586d..8c76e94 100644 --- a/ogWebconsole/src/app/components/login/login.component.css +++ b/ogWebconsole/src/app/components/login/login.component.css @@ -55,14 +55,14 @@ mat-form-field { } @keyframes rotate360 { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } + from { + transform: rotate(0deg); } + to { + transform: rotate(360deg); + } +} - .rotating { - animation: rotate360 0.6s cubic-bezier(.42,0,1,1) infinite; - } +.rotating { + animation: rotate360 0.6s cubic-bezier(.42,0,1,1) infinite; +} diff --git a/ogWebconsole/src/app/components/login/login.component.html b/ogWebconsole/src/app/components/login/login.component.html index 1ddffba..abb8dad 100644 --- a/ogWebconsole/src/app/components/login/login.component.html +++ b/ogWebconsole/src/app/components/login/login.component.html @@ -21,7 +21,7 @@
diff --git a/ogWebconsole/src/app/components/login/login.component.ts b/ogWebconsole/src/app/components/login/login.component.ts index de37ed7..3b6f805 100644 --- a/ogWebconsole/src/app/components/login/login.component.ts +++ b/ogWebconsole/src/app/components/login/login.component.ts @@ -63,6 +63,7 @@ export class LoginComponent { hide = signal(true); clickEvent(event: MouseEvent) { + event.preventDefault(); this.hide.set(!this.hide()); event.stopPropagation(); }