Skip to content

Commit 8b2356a

Browse files
authored
fix: Footer Location on Smaller Screens (#1242)
update body background color and remove background on footer
1 parent 5afb38f commit 8b2356a

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

components/organisms/Footer/footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ const footerContext = [
5959

6060
const Footer = (): JSX.Element => {
6161
return (
62-
<footer className=" h-24 w-full bg-light-slate-2 transition">
62+
<footer className="h-24 w-full transition">
6363
<div className=" container mx-auto px-2 md:px-16 lg:border-t lg:py-8 lg:items-center lg:justify-between lg:gap-x-4 flex flex-col gap-y-4 lg:flex-row py-2 w-full">
6464
<div className="text-center lg:text-left justify-center gap-1 flex items-center">
6565
<div className="w-6 h-6 relative !min-w-[24px] min-h-[24px]">

styles/globals.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
* {
66
font-weight: 500;
77
}
8+
body {
9+
background-color: #f8f9fa;
10+
}
811
.login-step .sbui-btn-container {
912
width: 100%;
1013
}

0 commit comments

Comments
 (0)