Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Footer Location on Smaller Screens #1242

Merged
merged 1 commit into from Jun 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/organisms/Footer/footer.tsx
Expand Up @@ -59,7 +59,7 @@ const footerContext = [

const Footer = (): JSX.Element => {
return (
<footer className=" h-24 w-full bg-light-slate-2 transition">
<footer className="h-24 w-full transition">
<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">
<div className="text-center lg:text-left justify-center gap-1 flex items-center">
<div className="w-6 h-6 relative !min-w-[24px] min-h-[24px]">
Expand Down
3 changes: 3 additions & 0 deletions styles/globals.css
Expand Up @@ -5,6 +5,9 @@
* {
font-weight: 500;
}
body {
background-color: #f8f9fa;
}
.login-step .sbui-btn-container {
width: 100%;
}
Expand Down