diff options
author | “Kruthi <“krutbhat@att.com”> | 2020-05-01 20:18:16 +0530 |
---|---|---|
committer | Kruthi Bhat <krutbhat@att.com> | 2020-05-06 19:06:40 +0000 |
commit | 3f7d8f642da3abb81749cc59a3bd7e2e28c06a52 (patch) | |
tree | d7ad64585d0babe67ca486aa0c6e0da06aee8116 /portal-FE-common/src/app | |
parent | 99461875f3da1f93f78b704e0f59b98f7dce4b8a (diff) |
Fixed userbar issue on home page
Change-Id: I5f81ee5880ada887808a795188959ea70a595550
Issue-ID: PORTAL-896
Signed-off-by: krutbhat@att.com
Diffstat (limited to 'portal-FE-common/src/app')
-rw-r--r-- | portal-FE-common/src/app/layout/components/userbar/userbar.component.scss | 4 | ||||
-rw-r--r-- | portal-FE-common/src/app/layout/components/userbar/userbar.component.ts | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/portal-FE-common/src/app/layout/components/userbar/userbar.component.scss b/portal-FE-common/src/app/layout/components/userbar/userbar.component.scss index 451adfc7..7e0edc10 100644 --- a/portal-FE-common/src/app/layout/components/userbar/userbar.component.scss +++ b/portal-FE-common/src/app/layout/components/userbar/userbar.component.scss @@ -108,8 +108,8 @@ button { display: block; margin-left: auto; margin-right: auto; - height: 55px; - width: 55px; + height: 45px; + width: 45px; border-radius: 50%; } diff --git a/portal-FE-common/src/app/layout/components/userbar/userbar.component.ts b/portal-FE-common/src/app/layout/components/userbar/userbar.component.ts index 2136abb2..d3680c9c 100644 --- a/portal-FE-common/src/app/layout/components/userbar/userbar.component.ts +++ b/portal-FE-common/src/app/layout/components/userbar/userbar.component.ts @@ -82,7 +82,7 @@ export class UserbarComponent implements OnInit { // $log.error('UserbarCtrl::updateActiveUsers: failed to get active user'); this.stop(); } else { - var maxItems = 25; + var maxItems = 5; if (_res.length < maxItems) maxItems = _res.length; for (var i = 0; i < maxItems; i++) { |