refactor: adjust alignment and styling of schedule actions buttons in dialog

This commit is contained in:
Ivan Kalashnikov 2026-01-20 13:50:47 +07:00
parent 25c0c2764a
commit 45ec227da7

View file

@ -119,7 +119,7 @@ mat-dialog-content {
.schedule-actions {
display: flex;
justify-content: center;
align-items: center;
align-items: stretch;
width: 100%;
margin: 0 auto;
padding-bottom: 8px;
@ -129,6 +129,15 @@ mat-dialog-content {
flex: 1 1 0;
min-width: 0;
max-width: 100%;
height: auto;
min-height: 32px;
white-space: normal;
word-break: break-word;
text-align: center;
}
.mat-stroked-button {
height: auto;
}
.schedule-actions button:not(:last-child) {
@ -139,3 +148,10 @@ mat-dialog-content {
display: block;
width: 100%;
}
.schedule-actions button,
.dialog-cancel-btn {
white-space: normal;
word-break: break-word;
text-align: center;
}