From fbdc64f807fca32559c0a51625dbf591ac5044b0 Mon Sep 17 00:00:00 2001 From: Rene Enriquez Date: Tue, 26 May 2020 12:27:12 -0500 Subject: [PATCH] fix: #296 vertical scroll on project type list table --- .../project-type-list.component.html | 50 ++++++++----------- .../project-type-list.component.scss | 4 ++ 2 files changed, 24 insertions(+), 30 deletions(-) diff --git a/src/app/modules/customer-management/components/projects-type/components/project-type-list/project-type-list.component.html b/src/app/modules/customer-management/components/projects-type/components/project-type-list/project-type-list.component.html index 9970f630f..f51b8bd98 100644 --- a/src/app/modules/customer-management/components/projects-type/components/project-type-list/project-type-list.component.html +++ b/src/app/modules/customer-management/components/projects-type/components/project-type-list/project-type-list.component.html @@ -1,31 +1,21 @@ - - - - - - - - - - - - - -
Project type
{{ projectType.name }} - - -
-
- +
+ + + + + + + + + + + + + +
Project type
{{ projectType.name }} + + +
diff --git a/src/app/modules/customer-management/components/projects-type/components/project-type-list/project-type-list.component.scss b/src/app/modules/customer-management/components/projects-type/components/project-type-list/project-type-list.component.scss index 8099bafc8..d3a3d95bc 100644 --- a/src/app/modules/customer-management/components/projects-type/components/project-type-list/project-type-list.component.scss +++ b/src/app/modules/customer-management/components/projects-type/components/project-type-list/project-type-list.component.scss @@ -1 +1,5 @@ @import '../../../../../../../styles/colors.scss'; + +.project-type-list-div { + max-height: 250px; overflow: auto; display:inline-block; width: 100%; +}