fix: add styles to confirmation modal

Words are forced to break if no more space available

(cherry picked from commit 20510591e4)
This commit is contained in:
Jukka Lipka
2025-06-13 17:32:29 +02:00
committed by github-actions[bot]
parent d3b098b407
commit 2ed43035eb
2 changed files with 8 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
:host {
.modal {
&-body, &-header {
word-break: break-word;
}
}
}

View File

@@ -11,6 +11,7 @@ import { TranslateModule } from '@ngx-translate/core';
@Component({
selector: 'ds-confirmation-modal',
templateUrl: 'confirmation-modal.component.html',
styleUrls: ['confirmation-modal.component.scss'],
standalone: true,
imports: [
TranslateModule,