RED-6763, fixed workflow item spinner being cut off.

This commit is contained in:
George 2023-06-14 14:38:33 +03:00
parent 04cc33b18e
commit 95f4b4f645
2 changed files with 5 additions and 1 deletions

View File

@ -26,7 +26,7 @@
<redaction-file-workload [file]="file"></redaction-file-workload>
<div class="file-actions">
<div class="file-actions overflow-visible">
<redaction-processing-indicator [file]="file" class="mr-8"></redaction-processing-indicator>
<div #actionsWrapper class="actions-wrapper">

View File

@ -73,3 +73,7 @@ redaction-file-workload {
overflow: hidden;
flex: 1;
}
.overflow-visible {
overflow: visible;
}