Skip to content

Commit

Permalink
fix(ui): remove the bottom-border on the side when larger than md
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanCassiere committed Jul 1, 2024
1 parent 6bfafd5 commit 6312f5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routers/app/ui/layouts/app-container.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const AppContainer: FC<PropsWithChildren<AppContainerProps>> = ({
}) => {
return (
<div className="flex flex-col md:grid md:grid-cols-4 lg:grid-cols-5 min-h-full">
<aside class="h-[250px] border-b flex flex-col bg-gray-100 dark:bg-gray-800 md:h-auto md:col-span-1 md:border-r md:border-b-none">
<aside class="h-[250px] border-b flex flex-col bg-gray-100 dark:bg-gray-800 md:h-auto md:col-span-1 md:border-r md:border-b-0">
<div class="flex-grow p-2">
<p class="pb-2">Hello {user.username}!</p>
<p class="pb-2 border-b">Your organizations</p>
Expand Down

0 comments on commit 6312f5e

Please sign in to comment.