Skip to content

Commit 518a398

Browse files
authored
fix: TT-340 remove unwanted space at the bottom of the UI (#752)
1 parent eec5cf4 commit 518a398

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

src/app/modules/shared/components/sidebar/sidebar.component.scss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ body {
6060

6161
.content_app {
6262
padding: 2rem 3rem 5rem 3rem;
63-
overflow-y: auto;
63+
overflow-y: scroll;
6464
}
6565

6666
.active {
@@ -72,8 +72,8 @@ body {
7272

7373
.full-height {
7474
height: 100%;
75-
height: -moz-calc(100vh - 12vh);
76-
height: -webkit-calc(100vh - 12vh);
77-
height: -o-calc(100vh - 12vh);
78-
height: calc(100vh - 12vh);
75+
height: -moz-calc(100vh - 1vh);
76+
height: -webkit-calc(100vh - 1vh);
77+
height: -o-calc(100vh - 1vh);
78+
height: calc(100vh - 1vh);
7979
}

src/styles.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ body {
1717
margin: 0;
1818
padding: 0;
1919
overflow-x: hidden;
20+
overflow-y: hidden;
2021
}
2122

2223
.table.dataTable th,

0 commit comments

Comments
 (0)