diff --git a/src/core/features/mainmenu/pages/home/home.html b/src/core/features/mainmenu/pages/home/home.html
index 4ef1d95a9..aa46be819 100644
--- a/src/core/features/mainmenu/pages/home/home.html
+++ b/src/core/features/mainmenu/pages/home/home.html
@@ -5,7 +5,7 @@
-
+
diff --git a/src/theme/globals.variables.scss b/src/theme/globals.variables.scss
index 6d5151c4f..61be4373e 100644
--- a/src/theme/globals.variables.scss
+++ b/src/theme/globals.variables.scss
@@ -279,8 +279,8 @@ $toolbar-color: get_contrast_color($toolbar-background) !default;
$toolbar-color-dark: get_contrast_color($toolbar-background-dark) !default;
$toolbar-border-width: 3px !default;
$toolbar-button-image-size: 44px !default;
-$toolbar-height-md: 56px !default;
-$toolbar-height-ios: 54px !default;
+$toolbar-md-height: 56px !default;
+$toolbar-ios-height: 54px !default;
// Bottom tab bar.
$bottom-tabs-background: $black !default;
diff --git a/src/theme/theme.base.scss b/src/theme/theme.base.scss
index d5c8ad73d..f742c41d6 100644
--- a/src/theme/theme.base.scss
+++ b/src/theme/theme.base.scss
@@ -139,7 +139,7 @@ ion-app.ios ion-header h2 {
text-align: center;
font-size: 17px;
font-weight: 600;
- line-height: #{$toolbar-height-ios};
+ line-height: #{$toolbar-ios-height};
box-sizing: border-box;
pointer-events: none;
}
@@ -161,11 +161,11 @@ ion-item.ion-text-wrap ion-label {
// Ionic toolbar on header.
ion-app.md ion-toolbar {
- --min-height: #{$toolbar-height-md};
+ --min-height: #{$toolbar-md-height};
}
ion-app.ios ion-toolbar {
- --min-height: #{$toolbar-height-ios};
+ --min-height: #{$toolbar-ios-height};
}
ion-header ion-toolbar {