From c938c3a8ca5deafafee39aef1d4cab9aebf82363 Mon Sep 17 00:00:00 2001 From: Rajnikant Date: Tue, 22 Mar 2022 12:07:13 +0530 Subject: [PATCH 1/2] Link added --- src/app/components/help/help.component.html | 3 ++- src/app/components/help/help.component.scss | 7 +++++++ src/app/components/help/help.component.ts | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/src/app/components/help/help.component.html b/src/app/components/help/help.component.html index d6f11ce5..85b7edd6 100644 --- a/src/app/components/help/help.component.html +++ b/src/app/components/help/help.component.html @@ -21,7 +21,8 @@ Third party components -
+ +
diff --git a/src/app/components/help/help.component.scss b/src/app/components/help/help.component.scss index 6e0e106f..2fade377 100644 --- a/src/app/components/help/help.component.scss +++ b/src/app/components/help/help.component.scss @@ -2,3 +2,10 @@ width: 100%; margin-top: 20px; } +a { + color: #f8f9fa !important; + font-family: Roboto, "Helvetica Neue", sans-serif; + font-size: 14px; + font-weight: 400; + text-decoration: none !important; +} diff --git a/src/app/components/help/help.component.ts b/src/app/components/help/help.component.ts index 57d9d1b2..285fed87 100644 --- a/src/app/components/help/help.component.ts +++ b/src/app/components/help/help.component.ts @@ -19,7 +19,7 @@ export class HelpComponent implements OnInit { }, (error) => { if (error.status === 404) { - this.thirdpartylicenses = 'File not found'; + this.thirdpartylicenses = 'Download Solar-PuTTY'; } } ); From 96a11384a09141ab790d4229b2e4a4c8db5a5c59 Mon Sep 17 00:00:00 2001 From: Rajnikant Date: Wed, 23 Mar 2022 12:33:35 +0530 Subject: [PATCH 2/2] removed !important --- src/app/components/help/help.component.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/components/help/help.component.scss b/src/app/components/help/help.component.scss index 2fade377..a74bf126 100644 --- a/src/app/components/help/help.component.scss +++ b/src/app/components/help/help.component.scss @@ -3,9 +3,9 @@ margin-top: 20px; } a { - color: #f8f9fa !important; + color: #f8f9fa; font-family: Roboto, "Helvetica Neue", sans-serif; font-size: 14px; font-weight: 400; - text-decoration: none !important; + text-decoration: none; }