Skip to content

Commit 44048cf

Browse files
authored
Merge pull request #1312 from w3bdesign/develop
Fix Footer width
2 parents 4f1bc1d + bff00c3 commit 44048cf

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/components/Footer/Footer.component.tsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
/**
22
* Renders Footer of the application.
3-
* @function Layout
3+
* @function Footer
44
* @returns {JSX.Element} - Rendered component
55
*/
66
const Footer = () => (
7-
<footer className="hidden md:block w-full md:w-11/12 sm:mt-[14rem] sm:bottom-0 px-6 md:mb-2 mx-auto text-center bg-white border border-gray-300 rounded-lg shadow">
8-
<div className="p-6">
9-
Copyright &copy; {new Date().getFullYear()} Daniel / w3bdesign
7+
<footer className="bg-white mb-4">
8+
<div className="container flex md:flex-wrap flex-col md:flex-row items-center justify-between px-6 py-3 mx-auto mt-0 md:min-w-96 border border-gray-200 rounded">
9+
<div className="text-gray-600 mx-auto">
10+
&copy; {new Date().getFullYear()} Daniel / w3bdesign
11+
</div>
1012
</div>
1113
</footer>
1214
);

0 commit comments

Comments
 (0)