change font size and move add and delete button in edit screens (#128)
All checks were successful
Backend Deploy / build (push) Successful in 18s
Backend Build and Test / build (push) Successful in 2m35s

closes #118
closes #119

Reviewed-on: #128
This commit was merged in pull request #128.
This commit is contained in:
2025-05-28 10:00:18 +02:00
parent 5b1d107cac
commit 720ef83c2e
9 changed files with 39 additions and 28 deletions

View File

@@ -6,11 +6,6 @@
</div>
<ion-title *ngIf="isAddMode">Create Task</ion-title>
<ion-title *ngIf="!isAddMode">Edit Task</ion-title>
<button
*ngIf="!isAddMode"
class="remove-button"
(click)="deleteTask()"
>Delete task</button>
</div>
</ion-toolbar>
</ion-header>
@@ -32,5 +27,10 @@
<span *ngIf="isAddMode">Add Task</span>
<span *ngIf="!isAddMode">Update Task</span>
</button>
<button
*ngIf="!isAddMode"
class="remove-button"
(click)="deleteTask()"
>Delete task</button>
</form>
</ion-content>