Skip to content

Commit

Permalink
Fix layout issues
Browse files Browse the repository at this point in the history
  • Loading branch information
tkleinke committed Dec 10, 2024
1 parent 8c0da5c commit 280c67f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div *ngFor="let field of fieldDefinitions" [id]="getFieldId(field)">
<div *ngIf="shouldShow(field)" class="card bg-light">
<div *ngIf="shouldShow(field)" class="card bg-light edit-form-field-container">
<div class="card-header h4">
<span class="card-title">{{labels[field.name]}}</span>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
edit-form-group {
.card {
.edit-form-field-container {
margin-right: 15px;

.card-header {
Expand Down
18 changes: 10 additions & 8 deletions desktop/src/app/components/docedit/core/edit-form.scss
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,16 @@
box-shadow: none;
}

.btn-success,
.btn-danger:not(.btn-sm),
.btn-info,
.btn-outline-primary,
.btn-secondary {
height: 33px;
width: 34px;
padding: 0;
.input-group {
.btn-success,
.btn-danger:not(.btn-sm),
.btn-info,
.btn-outline-primary,
.btn-secondary {
height: 33px;
width: 34px;
padding: 0;
}
}

.delete-multi-input-entry .mdi,
Expand Down

0 comments on commit 280c67f

Please sign in to comment.