From 4c5ece82491b1df880e591fe0479338e754cf9fb Mon Sep 17 00:00:00 2001 From: softsimon Date: Fri, 5 May 2023 02:06:48 +0400 Subject: [PATCH] Fixing navbar overflowing footer --- .../components/global-footer/global-footer.component.scss | 1 - frontend/src/styles.scss | 6 +++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/shared/components/global-footer/global-footer.component.scss b/frontend/src/app/shared/components/global-footer/global-footer.component.scss index 37da744fe..cf4aa02c4 100644 --- a/frontend/src/app/shared/components/global-footer/global-footer.component.scss +++ b/frontend/src/app/shared/components/global-footer/global-footer.component.scss @@ -1,6 +1,5 @@ footer { text-align: center; - margin-top: auto; } .terms-of-service { diff --git a/frontend/src/styles.scss b/frontend/src/styles.scss index 88b7521f2..fbaaa5ed2 100644 --- a/frontend/src/styles.scss +++ b/frontend/src/styles.scss @@ -1139,7 +1139,7 @@ th { display: none; } -app-master-page { +app-master-page, app-liquid-master-page { display: flex; flex-direction: column; min-height: 100vh; @@ -1148,3 +1148,7 @@ app-master-page { padding-bottom: 0px; } } + +app-global-footer { + margin-top: auto; +} \ No newline at end of file