Skip to content

Commit

Permalink
windows scrollbar fix
Browse files Browse the repository at this point in the history
  • Loading branch information
furknyavuz committed Sep 3, 2021
1 parent a26adee commit 380614f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<div class="section-column" *ngFor="let column of options; last as isLastColumn"
[class.section-column-right-border]="true"
[class]="column.sectionColor ? column.sectionColor + '-theme' : ''"
[style]="'max-height: ' + (80 + (150 * calculatedRows)) + 'px;'">
[style]="'max-height: ' + ((80 + (150 * calculatedRows)) + 1) + 'px;'">
<div *ngIf="column.sectionTitle" class="section-header">
<h4>
{{ column.sectionTitle }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
width: 330px;
max-width: 330px;

max-height: 830px;
max-height: 831px;

overflow-y: auto;
position: relative;
Expand Down

0 comments on commit 380614f

Please sign in to comment.