summaryrefslogtreecommitdiffstats
path: root/portal-FE-common/src/app
diff options
context:
space:
mode:
authorSudarshan Kumar <sudarshan.kumar@att.com>2020-08-10 14:19:05 +0530
committerSudarshan Kumar <sudarshan.kumar@att.com>2020-08-10 14:19:57 +0530
commit63030a8452c9ac52a64fda022a068644f2caf4ae (patch)
tree7f31e203dede284ebbca2d819b0e538e2fc05386 /portal-FE-common/src/app
parent90a8e912331f206097f1625afdec8281fd141b1f (diff)
Fixed portal footer alignment
Fixed portal footer alignment Issue-ID: PORTAL-979 Change-Id: I99bc97f61114dbe9b39663c4749dd2639f7f2f3a Signed-off-by: Sudarshan Kumar <sudarshan.kumar@att.com>
Diffstat (limited to 'portal-FE-common/src/app')
-rw-r--r--portal-FE-common/src/app/layout/components/footer/footer.component.html2
-rw-r--r--portal-FE-common/src/app/layout/components/footer/footer.component.scss4
2 files changed, 5 insertions, 1 deletions
diff --git a/portal-FE-common/src/app/layout/components/footer/footer.component.html b/portal-FE-common/src/app/layout/components/footer/footer.component.html
index 47a53cda..93c529a4 100644
--- a/portal-FE-common/src/app/layout/components/footer/footer.component.html
+++ b/portal-FE-common/src/app/layout/components/footer/footer.component.html
@@ -35,7 +35,7 @@
-->
-<footer>
+<footer class="portal-footer">
<div id="footer-text" class="footerText">
<p class="copyright-text">
<a class="footer-link" href="{{footerLink}}" target="_blank">
diff --git a/portal-FE-common/src/app/layout/components/footer/footer.component.scss b/portal-FE-common/src/app/layout/components/footer/footer.component.scss
index 82c81d7c..0a6fc6c1 100644
--- a/portal-FE-common/src/app/layout/components/footer/footer.component.scss
+++ b/portal-FE-common/src/app/layout/components/footer/footer.component.scss
@@ -50,3 +50,7 @@ $topnav-background-color: #222;
margin-top: 20px;
text-align: center;
}
+
+.portal-footer{
+ margin-top: calc(100vh - 620px);
+}