Skip to content

Commit

Permalink
Removed scroll bar and fixed table size
Browse files Browse the repository at this point in the history
  • Loading branch information
sei-npacheco committed May 1, 2024
1 parent e5b725d commit 28683d1
Showing 1 changed file with 19 additions and 13 deletions.
32 changes: 19 additions & 13 deletions src/app/components/home-app/home-app.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,18 @@
bottom: 0;
left: 0;
right: 0;
position: fixed;
position: absolute;
height: 100%;
text-align:center;
text-align: center;
overflow: hidden;
}

.app-header-container {
display: flex;
flex-flow: row;
flex-flow: column;
justify-content: center;
text-align: center;
height: 59px;
}

.app-error-container {
Expand All @@ -31,17 +33,22 @@

.app-content-container {
display: flex;
flex-flow: row;
flex-flow: column;
justify-content: center;
text-align: center;
height: auto;
height: 59px;
}

.app-model-container {
display: flex;
flex-flow: column;
overflow: hidden;
justify-content: left;
text-align: left;
flex: 70
flex: 70;
overflow: auto;
height: calc(100% - 57px);
}

.app-score-container {
Expand Down Expand Up @@ -94,13 +101,12 @@ a {
}

.exhibit-list-container {
display: inline-flex;
display: flex;
flex-direction: column;
justify-content: center;
max-height: 800px;
margin: auto;
min-width: 300px;
margin-top: 40px;
width: 80%;
max-height: calc(100% - 50px);
}

.exhibit-title {
Expand All @@ -111,7 +117,7 @@ a {

.crucible-icon-gallery {
transform: scale(2);
height: auto;
margin-bottom: 10px;
margin-right: 10px;
}

Expand All @@ -123,11 +129,11 @@ a {
}

.mat-table {
overflow: auto;
max-height: 700px;
overflow-y: auto;
max-height: calc(100vh - 300px);
}

.searchBox {
margin-right: 10px;
margin-left: auto !important;
}
}

0 comments on commit 28683d1

Please sign in to comment.