summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSunder Tattavarada <statta@research.att.com>2020-08-10 15:22:28 +0000
committerGerrit Code Review <gerrit@onap.org>2020-08-10 15:22:28 +0000
commit547810b7da6bb938f1e666357d88f7d03f455229 (patch)
tree29b71a57350206cd2453967721a06b1bf2ecffeb
parentd19ae7b07bee2e0997107145932b4c689f03af8d (diff)
parent63030a8452c9ac52a64fda022a068644f2caf4ae (diff)
Merge "Fixed portal footer alignment"
-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);
+}