From bb543e2ed2e142e06758d45209d966815418688a Mon Sep 17 00:00:00 2001 From: Volha Mardvilka Date: Tue, 25 Jun 2024 08:29:34 +0000 Subject: [PATCH] 348187954: (fix) update callouts position on the small window size --- .../app/components/callout/callout.component.scss | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/modules/ui/src/app/components/callout/callout.component.scss b/modules/ui/src/app/components/callout/callout.component.scss index 20f30e28f..8a9d77125 100644 --- a/modules/ui/src/app/components/callout/callout.component.scss +++ b/modules/ui/src/app/components/callout/callout.component.scss @@ -31,6 +31,18 @@ top: 60px; } +@media (width < 742px) { + :host + ::ng-deep app-callout { + top: 80px; + } +} + +@media (width < 490px) { + :host + ::ng-deep app-callout { + top: 100px; + } +} + .callout-container { display: flex; box-sizing: border-box;