feat(component): Update footer styling and structure

The footer's class has been updated to improve page layout. Additionally, unnecessary div containing flex properties has been removed for simplicity and improved readability.
This commit is contained in:
Mathis H (Avnyr) 2024-06-17 10:01:15 +02:00
parent 01c073e879
commit 7426f5f642
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View File

@ -5,7 +5,7 @@ export function Footer() {
return (
<footer
className={
"flex flex-col-reverse md:flex-row justify-between gap-2 md:gap-1 items-center p-2 border-t-2 w-full"
"flex flex-col-reverse md:flex-row justify-between gap-2 md:gap-1 self-end order-6 items-center p-2 border-t-2 w-full"
}
>
<div
@ -49,11 +49,7 @@ export function Footer() {
<h3 className={"text-nowrap text-center"}>Support Center</h3>
</Link>
</div>
<div
className={
"flex flex-row gap-1 items-center justify-center md:justify-end md:w-1/3"
}
></div>
<div/>
</footer>
);
}