Skip to content

Commit 2a9cd2f

Browse files
Footer bug fix
1 parent 699fce1 commit 2a9cd2f

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

Client/public/skins/Default/styles.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ $sun-engine-footer-link-color: orange;
178178
padding: 18px 0;
179179
border-top: 1px solid $footer-border-color;
180180

181-
.links-menu__link,.links-menu__ext-link {
181+
.links-menu__link, .links-menu__ext-link {
182182
color: $footer-link-color;
183183
}
184184
}

Client/public/skins/GreenDeep/styles.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ $sun-engine-footer-link-color: orange;
183183
padding: 18px 0;
184184
border-top: 1px solid $footer-border-color;
185185

186-
.links-menu__link,.links-menu__ext-link {
186+
.links-menu__link, .links-menu__ext-link {
187187
color: $footer-link-color;
188188
}
189189
}

Client/public/skins/VioletOrange/styles.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ $sun-engine-footer-link-color: #7e73a5;
178178
padding: 18px 0;
179179
border-top: 1px solid $footer-border-color;
180180

181-
.links-menu__link,.links-menu__ext-link {
181+
.links-menu__link, .links-menu__ext-link {
182182
color: $footer-link-color;
183183
}
184184
}

Client/src/layout/Layout.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,9 @@ export default {
176176
footerSeparatorClassName() {
177177
if(config.Parts.FooterSeparatorClassName === "-")
178178
return null;
179-
return config.Parts.FooterSeparatorClassName ?? this.$iconsSet.Layout.heart;
179+
if(!config.Parts.FooterSeparatorClassName)
180+
return this.$iconsSet.Layout.heart;
181+
return config.Parts.FooterSeparatorClassName;
180182
},
181183
siteTitle() {
182184
return config.Parts.SiteTitle;

0 commit comments

Comments
 (0)