make done button bigger (#127)
All checks were successful
Backend Deploy / build (push) Successful in 20s
Backend Build and Test / build (push) Successful in 2m39s

closes #122

Reviewed-on: #127
This commit is contained in:
Huffle 2025-05-28 09:31:07 +02:00
parent 662257ebc5
commit 5b1d107cac
3 changed files with 6 additions and 5 deletions

View File

@ -36,7 +36,7 @@ export class AllowancePage implements ViewWillEnter {
allowance[0].name = 'Main Allowance';
this.allowance$.next(allowance);
})
}, 50);
}, 100);
}
canFinishGoal(allowance: Allowance): boolean {

View File

@ -31,6 +31,7 @@ mat-icon {
align-items: center;
border-bottom: 1px solid var(--line-color);
padding: 5px;
padding-block: 10px;
}
.item {
@ -56,17 +57,17 @@ mat-icon {
}
button {
width: 57px;
height: 30px;
height: 45px;
border-radius: 10px;
color: white;
background: var(--confirm-button-color);
padding-inline: 15px;
}
.add-button {
background-color: var(--ion-color-primary);
margin-right: 15px;
width: 75px;
height: 30px;
}
.assigned {

View File

@ -33,7 +33,7 @@ export class TasksPage implements ViewWillEnter {
this.taskService.getTaskList().subscribe(tasks => {
this.tasks$.next(tasks);
});
}, 50);
}, 100);
}
createTask() {