diff --git a/docs/guides/migrations.md b/docs/guides/migrations.md index 7a714ed873..6663a2809c 100644 --- a/docs/guides/migrations.md +++ b/docs/guides/migrations.md @@ -7,6 +7,11 @@ kb_sync_latest_only # Migrations +## 3.1 to 3.2 + +A styling adaption was made to the application shell to expand it to the full page height so the footer now always stays at the bottom. +Together with that an inline style of the `main-container` was moved to the global styling definition. + ## 3.0 to 3.1 The SSR environment variable 'ICM_IDENTITY_PROVIDER' will be removed in a future release ( PWA 5.0 ). diff --git a/src/app/app.component.html b/src/app/app.component.html index b98b45fa71..8aa2b4dbb3 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -1,13 +1,13 @@ -
+
-
+
-
+
diff --git a/src/app/extensions/store-locator/pages/store-locator/store-locator-page.component.html b/src/app/extensions/store-locator/pages/store-locator/store-locator-page.component.html index 84347aed49..2527834a82 100644 --- a/src/app/extensions/store-locator/pages/store-locator/store-locator-page.component.html +++ b/src/app/extensions/store-locator/pages/store-locator/store-locator-page.component.html @@ -1,7 +1,8 @@ -

{{ 'store_locator.title' | translate }}

+

{{ 'store_locator.title' | translate }}

{{ 'store_locator.description' | translate }}

{{ 'store_locator.howto' | translate }}

+
diff --git a/src/styles/global/global.scss b/src/styles/global/global.scss index 9b25dbf1b9..c9a7a39d69 100644 --- a/src/styles/global/global.scss +++ b/src/styles/global/global.scss @@ -2,6 +2,8 @@ // LAYOUT // contains layout and presentation classes for the global page structure (header, footer, global navigation, ...) .main-container { + position: relative; + min-height: 200px; background: $color-inverse; }