From f89cda25142dad8e64383bfc1c6edb47ee19e046 Mon Sep 17 00:00:00 2001 From: mpetrov Date: Mon, 21 Oct 2024 12:14:10 +0300 Subject: [PATCH] [4549] added mobile screen support --- .../shared/components/dialog/confirm-dialog.component.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ui-ngx/src/app/shared/components/dialog/confirm-dialog.component.scss b/ui-ngx/src/app/shared/components/dialog/confirm-dialog.component.scss index 7ecfdcb3f3..394fb79590 100644 --- a/ui-ngx/src/app/shared/components/dialog/confirm-dialog.component.scss +++ b/ui-ngx/src/app/shared/components/dialog/confirm-dialog.component.scss @@ -13,6 +13,8 @@ * See the License for the specific language governing permissions and * limitations under the License. */ +@import "../../../../scss/constants"; + :host { .mat-mdc-dialog-content { padding: 0 24px 24px; @@ -20,5 +22,9 @@ .dialog-title { max-width: 80vw; + + @media #{$mat-lt-sm} { + max-width: 100%; + } } }