aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_modals/yes-no-dialog/yes-no-dialog.component.html
diff options
context:
space:
mode:
authorTAMARA JERINIC <tamara.jerinic@gmail.com>2022-05-20 00:06:49 +0200
committerTAMARA JERINIC <tamara.jerinic@gmail.com>2022-05-20 00:06:49 +0200
commit638f410ad569c632c8dab6cdf66d6b5fd90d5b0c (patch)
treea8f0bbffbdb397a0e7a151feb374b0cc05da1983 /frontend/src/app/_modals/yes-no-dialog/yes-no-dialog.component.html
parent78c346b1296d2820e943e2918e4d3e9e57093e8f (diff)
parent863881a77f00810f3298aaf6fc451edfe733d121 (diff)
Merge branch 'redesign' of http://gitlab.pmf.kg.ac.rs/igrannonica/neuronstellar into redesign
Diffstat (limited to 'frontend/src/app/_modals/yes-no-dialog/yes-no-dialog.component.html')
-rw-r--r--frontend/src/app/_modals/yes-no-dialog/yes-no-dialog.component.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/frontend/src/app/_modals/yes-no-dialog/yes-no-dialog.component.html b/frontend/src/app/_modals/yes-no-dialog/yes-no-dialog.component.html
index 77e7be42..0470d395 100644
--- a/frontend/src/app/_modals/yes-no-dialog/yes-no-dialog.component.html
+++ b/frontend/src/app/_modals/yes-no-dialog/yes-no-dialog.component.html
@@ -1,10 +1,10 @@
-<h2 mat-dialog-title class="text-muted">{{data.title}}</h2>
-<div mat-dialog-content class="mt-4" style="color: rgb(81, 76, 76);">
+<h2 mat-dialog-title class="text-center">{{data.title}}</h2>
+<div mat-dialog-content class="mt-5 mb-4 mx-1">
<form (keydown)="withEnterKey($event)">
{{data.message}}
</form>
</div>
<div mat-dialog-actions class="d-flex justify-content-center mt-4">
- <button mat-button cdkFocusInitial (click)="onYesClick()" style="background-color: lightgray;">Da</button>
- <button mat-button cdkFocusInitial (click)="onNoClick()" style="background-color: lightgray;">Ne</button>
+ <button id="btnYes" mat-stroked-button color="basic" (click)="onYesClick()">Da</button>
+ <button id="btnNo" mat-stroked-button (click)="onNoClick()">Ne</button>
</div> \ No newline at end of file