Skip to content

Commit

Permalink
Update index.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
hellno committed Sep 1, 2023
1 parent 57dfe60 commit 93bbdca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/Notifications/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ export const Notifications = () => {
}

const renderLeftColumn = () => {
return <div className="hidden w-6/12 shrink-0 md:block">
return <div className="block w-6/12 shrink-0">
<div className={classNames(
"overflow-hidden rounded-l-sm border bg-gray-800",
isLeftColumnSelected ? "border-gray-600" : "border-gray-800"
Expand Down Expand Up @@ -300,7 +300,7 @@ export const Notifications = () => {
{navigation === NotificationNavigationEnum.mentions ? (
<div className="mx-auto flex w-full max-w-7xl items-start py-5">
{renderLeftColumn()}
<main className={classNames("flex-1 ml-4 border", !isLeftColumnSelected ? "border-gray-600" : "border-gray-800")}>
<main className={classNames("hidden md:flex-1 ml-4 border", !isLeftColumnSelected ? "border-gray-600" : "border-gray-800")}>
{renderMainContent()}
</main>
</div>
Expand Down

0 comments on commit 93bbdca

Please sign in to comment.