From 0c7b15130c3f1d8b434e92f2643522fb433a5063 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 30 Jun 2025 18:08:38 +0300 Subject: [PATCH 1/4] Fixed styles for Simple Cards widget --- website/modules/asset/ui/src/scss/_services.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/modules/asset/ui/src/scss/_services.scss b/website/modules/asset/ui/src/scss/_services.scss index ad056580..377d5516 100644 --- a/website/modules/asset/ui/src/scss/_services.scss +++ b/website/modules/asset/ui/src/scss/_services.scss @@ -149,7 +149,7 @@ font-size: 14px; line-height: 20px; color: $gray-300; - margin: 0; + margin: 20px 0; display: block; max-height: 0; opacity: 0; From bb443618bde70db9cff05cf5c0696f7997af83d5 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 30 Jun 2025 18:59:31 +0300 Subject: [PATCH 2/4] Removed incorrect margin-bottom --- website/modules/asset/ui/src/scss/_services.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/modules/asset/ui/src/scss/_services.scss b/website/modules/asset/ui/src/scss/_services.scss index 377d5516..ed0f1b9d 100644 --- a/website/modules/asset/ui/src/scss/_services.scss +++ b/website/modules/asset/ui/src/scss/_services.scss @@ -149,7 +149,7 @@ font-size: 14px; line-height: 20px; color: $gray-300; - margin: 20px 0; + margin-top: 20px; display: block; max-height: 0; opacity: 0; From f0c160c590e9170bf72e9cf04662304192e2f792 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 1 Jul 2025 10:53:00 +0300 Subject: [PATCH 3/4] Upd styles for mobile --- website/modules/asset/ui/src/scss/_services.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/modules/asset/ui/src/scss/_services.scss b/website/modules/asset/ui/src/scss/_services.scss index ed0f1b9d..03ea0269 100644 --- a/website/modules/asset/ui/src/scss/_services.scss +++ b/website/modules/asset/ui/src/scss/_services.scss @@ -149,7 +149,6 @@ font-size: 14px; line-height: 20px; color: $gray-300; - margin-top: 20px; display: block; max-height: 0; opacity: 0; @@ -162,6 +161,7 @@ } @include breakpoint-medium { + margin-top: 20px; max-height: none; opacity: 1; overflow: visible; From c2294b6e29b4ccf88bc8fdcdeb0a8d9739723538 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 1 Jul 2025 14:51:56 +0300 Subject: [PATCH 4/4] Fixed arrow pos and styles for mobile version --- website/modules/asset/ui/src/scss/_services.scss | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/website/modules/asset/ui/src/scss/_services.scss b/website/modules/asset/ui/src/scss/_services.scss index 03ea0269..2198f72e 100644 --- a/website/modules/asset/ui/src/scss/_services.scss +++ b/website/modules/asset/ui/src/scss/_services.scss @@ -29,7 +29,7 @@ } &-expand-button { - top: 20px; + top: 25px; } } } @@ -46,6 +46,11 @@ opacity: 1; overflow: visible; transform: none; + padding-top: 20px; + + @include breakpoint-medium { + padding-top: 0; + } } } } @@ -161,11 +166,14 @@ } @include breakpoint-medium { - margin-top: 20px; max-height: none; opacity: 1; overflow: visible; transform: none; + + p { + padding-top: 20px; + } } }