From ba92519659a6cb66773bc4a3e99dbbe7b208a04a Mon Sep 17 00:00:00 2001 From: daria Date: Mon, 26 Aug 2024 14:42:49 +0300 Subject: [PATCH 1/2] fix #1604 missing margin --- customize.dist/src/less2/pages/page-features.less | 1 + 1 file changed, 1 insertion(+) diff --git a/customize.dist/src/less2/pages/page-features.less b/customize.dist/src/less2/pages/page-features.less index e13fc7896..6eafd0f16 100644 --- a/customize.dist/src/less2/pages/page-features.less +++ b/customize.dist/src/less2/pages/page-features.less @@ -112,6 +112,7 @@ .cp-regis-user { @media (max-width:575px) { margin-top: 3em; + margin-bottom: 3em; } } } From 2f784064d90eacf11307895f5d3bd61e4a1b26ee Mon Sep 17 00:00:00 2001 From: daria Date: Tue, 3 Sep 2024 13:12:32 +0300 Subject: [PATCH 2/2] add margin to last card component #1604 --- customize.dist/pages/features.js | 2 +- customize.dist/src/less2/pages/page-features.less | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/customize.dist/pages/features.js b/customize.dist/pages/features.js index 50bc05069..ac30e041b 100644 --- a/customize.dist/pages/features.js +++ b/customize.dist/pages/features.js @@ -126,7 +126,7 @@ define([ ]), ]); var premiumFeatures = - h('div.col-12.col-sm-4.cp-anon-user',[ + h('div.col-12.col-sm-4.cp-premium-user',[ h('div.card',[ h('div.title-card',[ h('h3.text-center',Msg.features_premium) diff --git a/customize.dist/src/less2/pages/page-features.less b/customize.dist/src/less2/pages/page-features.less index 6eafd0f16..a56ed10a6 100644 --- a/customize.dist/src/less2/pages/page-features.less +++ b/customize.dist/src/less2/pages/page-features.less @@ -112,7 +112,11 @@ .cp-regis-user { @media (max-width:575px) { margin-top: 3em; - margin-bottom: 3em; + } + } + .cp-premium-user { + @media (max-width:575px) { + margin-top: 3em; } } }