Made main layout and footer not be in column direction

This commit is contained in:
Tania Gutierrez 2024-03-11 22:40:05 -04:00
parent 92b414afb1
commit 9b09f6854a
Signed by: riobuenoDevelops
GPG Key ID: 53133EB28EB7E801
1 changed files with 29 additions and 27 deletions

View File

@ -49,6 +49,7 @@ export const DashboardLayout = ({ children }: React.PropsWithChildren<{}>) => {
</Button>
</header>
<div className="flex-1">
{children}
<footer className="my-5">
@ -78,6 +79,7 @@ export const DashboardLayout = ({ children }: React.PropsWithChildren<{}>) => {
</ul>
</footer>
</div>
</div>
)
}