Skip to content

Commit

Permalink
Links to bottom
Browse files Browse the repository at this point in the history
  • Loading branch information
kglovern committed Aug 14, 2024
1 parent 2b01c26 commit 2aba8a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/src/features/navbar/components/NavbarLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ interface NavbarLinkProps {

export function NavbarLink(props: NavbarLinkProps) {
return (
<div className="flex flex-col items-center justify-center text-sm text-gray-500">
<a className="flex flex-col gap-0.5" href={props.href}>
<div className="flex flex-col">
<a className="flex flex-col gap-0.5 self-center content-center items-center justify-center text-sm text-gray-500" href={props.href}>
<props.icon className="text-4xl text-gray-800"/>
{ props.label }
</a>
Expand Down
2 changes: 1 addition & 1 deletion src/app/src/workspace/Sidebar/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {Navbar} from "../../features/navbar";

export const Sidebar = () => {
return <div className="border p-3 w-20">
return <div className="border w-20 flex flex-col justify-end">
<Navbar />
</div>;
};

0 comments on commit 2aba8a3

Please sign in to comment.