We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6e63e8e + c9338ad commit c2246d5Copy full SHA for c2246d5
1 file changed
src/app/submission/form/footer/submission-form-footer.component.html
@@ -1,5 +1,5 @@
1
-<div class="row" *ngIf="!!submissionId">
2
- <div class="col">
+<div class="d-flex flex-row gap-1 justify-content-between" *ngIf="!!submissionId">
+ <div class="flex-grow-0">
3
<button *ngIf="(showDepositAndDiscard | async)"
4
type="button"
5
id="discard"
@@ -10,7 +10,7 @@
10
<i class="fas fa-trash"></i> {{'submission.general.discard.submit' | translate}}
11
</button>
12
</div>
13
- <div class="col text-right d-flex justify-content-end align-items-center">
+ <div class="text-right d-flex justify-content-end align-items-center">
14
<span *ngIf="(hasUnsavedModification | async) !== true && (processingSaveStatus | async) !== true && (processingDepositStatus | async) !== true">
15
<i class="fas fa-check-circle"></i> {{'submission.general.info.saved' | translate}}
16
</span>
0 commit comments