From e7fcfb530caeb51e5b3f39d4baee83dcd21bfb46 Mon Sep 17 00:00:00 2001 From: Joyce-Pei <77823772+Joyce-Pei@users.noreply.github.com> Date: Sat, 17 Apr 2021 23:45:55 -0700 Subject: [PATCH] keep footer at the bottom The footer was not at the bottom, it just went after the content. --- frontend/src/Footer/Footer.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/src/Footer/Footer.css b/frontend/src/Footer/Footer.css index 6f6df80..4b63078 100644 --- a/frontend/src/Footer/Footer.css +++ b/frontend/src/Footer/Footer.css @@ -1,3 +1,7 @@ .colorDesign { color: #55bcc9; -} \ No newline at end of file + position: absolute; + bottom: 0; + width: 100%; + height: 2.5rem; +}