diff --git a/src/app/auth/components/auth/auth.component.scss b/src/app/auth/components/auth/auth.component.scss
index 577f750ef..41ae1e00a 100644
--- a/src/app/auth/components/auth/auth.component.scss
+++ b/src/app/auth/components/auth/auth.component.scss
@@ -86,21 +86,12 @@
font-size: 16px;
}
- & > .name {
- font-family: 'UsualRegular', sans-serif;
- font-size: 32px;
- font-weight: 350;
- line-height: 48px;
- letter-spacing: -0.02em;
- text-align: left;
- margin-bottom: 8px;
- }
-
- & > .location {
- font-family: 'UsualRegular', sans-serif;
+ & > .link {
+ font-family: 'UsualItalic', sans-serif;
font-weight: 300;
line-height: 24px;
font-size: 18px;
margin-bottom: 32px;
+ color: black;
}
}
diff --git a/src/app/auth/components/auth/auth.component.ts b/src/app/auth/components/auth/auth.component.ts
index 61d9d751a..5a8d604e5 100644
--- a/src/app/auth/components/auth/auth.component.ts
+++ b/src/app/auth/components/auth/auth.component.ts
@@ -1,15 +1,13 @@
+/* @format */
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'pr-auth',
templateUrl: './auth.component.html',
- styleUrls: ['./auth.component.scss']
+ styleUrls: ['./auth.component.scss'],
})
export class AuthComponent implements OnInit {
+ constructor() {}
- constructor() { }
-
- ngOnInit() {
- }
-
+ ngOnInit() {}
}
diff --git a/src/app/auth/components/auth/auth.components.spec.ts b/src/app/auth/components/auth/auth.components.spec.ts
new file mode 100644
index 000000000..f576d5a2c
--- /dev/null
+++ b/src/app/auth/components/auth/auth.components.spec.ts
@@ -0,0 +1,18 @@
+/* @format */
+import { Shallow } from "shallow-render";
+import { AuthRoutingModule } from "@auth/auth.routes";
+import { AuthComponent } from "./auth.component";
+
+describe("AuthComponent", () => {
+ let shallow: Shallow
;
+
+ beforeEach(async () => {
+ shallow = new Shallow(AuthComponent, AuthRoutingModule);
+ });
+
+ it("should create", async () => {
+ const { instance } = await shallow.render();
+
+ expect(instance).toBeTruthy();
+ });
+});
diff --git a/src/assets/img/placeholder_sign_in_image.png b/src/assets/img/placeholder_sign_in_image.png
deleted file mode 100644
index 5d55dbe04..000000000
Binary files a/src/assets/img/placeholder_sign_in_image.png and /dev/null differ
diff --git a/src/assets/img/sign_in_image.png b/src/assets/img/sign_in_image.png
new file mode 100644
index 000000000..7f4f8e42c
Binary files /dev/null and b/src/assets/img/sign_in_image.png differ