Skip to content

Commit

Permalink
Fix result log clipping container
Browse files Browse the repository at this point in the history
  • Loading branch information
buehlefs committed Aug 18, 2023
1 parent 6568b72 commit 0c9b31b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ <h1 class="t-page-headline">Timeline Step {{stepId}}</h1>
Result Log
</mat-panel-title>
</mat-expansion-panel-header>
<pre>{{timelineStep.resultLog}}</pre>
<pre class="log-text">{{timelineStep.resultLog}}</pre>
</mat-expansion-panel>

<div class="notes-title" *ngIf="stepTabId === 'overview' && timelineStep.status !== 'PENDING'">
Expand Down
5 changes: 5 additions & 0 deletions src/app/components/timeline-step/timeline-step.component.sass
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
.result-log
margin-block: 1rem

.log-text
overflow: auto
//white-space: pre-wrap
//overflow-wrap: anywhere
.notes-card
margin-block-end: 1rem

Expand Down

0 comments on commit 0c9b31b

Please sign in to comment.