From c498f88029f73f6de660e100d240389afe28f11e Mon Sep 17 00:00:00 2001 From: argirok Date: Mon, 26 Sep 2022 14:00:37 +0300 Subject: [PATCH] add heroBackground, put only in hero the background image --- src/app/community/community.component.html | 3 ++- src/assets/community.less | 8 +++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/src/app/community/community.component.html b/src/app/community/community.component.html index a47f80e..683c4a0 100644 --- a/src/app/community/community.component.html +++ b/src/app/community/community.component.html @@ -149,7 +149,8 @@
-
+

diff --git a/src/assets/community.less b/src/assets/community.less index d3aaff7..0247b36 100644 --- a/src/assets/community.less +++ b/src/assets/community.less @@ -6,7 +6,8 @@ @global-primary-gradient: none; @general-search-form-background: fade(@global-primary-background, 15%); - +@hero-background-image: none; +@hero-background-position: top center; #joinAndInviteBtn { position: fixed; right: 0; @@ -49,3 +50,8 @@ color: @button-primary-color; } } + +.heroBackground{ + background-image: @hero-background-image; + background-position: @hero-background-position; +}