Skip to content

Commit ea6f640

Browse files
authored
Merge pull request DSpace#4276 from 4Science/task/main/DURACOM-226
Fix submission footer wrapping on medium screens
2 parents f16a03e + ad7aa36 commit ea6f640

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/app/submission/form/footer/submission-form-footer.component.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@if (!!submissionId) {
2-
<div class="row">
3-
<div class="col">
2+
<div class="d-flex flex-row gap-1 justify-content-between">
3+
<div class="flex-grow-0">
44
@if ((showDepositAndDiscard | async)) {
55
<button
66
type="button"
@@ -13,7 +13,7 @@
1313
</button>
1414
}
1515
</div>
16-
<div class="col text-end d-flex justify-content-end align-items-center">
16+
<div class="text-end d-flex justify-content-end align-items-center">
1717
@if ((hasUnsavedModification | async) !== true && (processingSaveStatus | async) !== true && (processingDepositStatus | async) !== true) {
1818
<span>
1919
<i class="fas fa-check-circle"></i> {{'submission.general.info.saved' | translate}}

0 commit comments

Comments
 (0)