From e63efad50a987622b461c421732ec247a4783c06 Mon Sep 17 00:00:00 2001 From: Anurag Yadav Date: Wed, 4 Oct 2023 00:14:27 +0530 Subject: [PATCH] Feat: Add Light Theme To Notifications Page --- components/PageHeading/PageHeading.tsx | 2 +- pages/notifications/index.tsx | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/components/PageHeading/PageHeading.tsx b/components/PageHeading/PageHeading.tsx index 05b9eec3..ab8e26e4 100644 --- a/components/PageHeading/PageHeading.tsx +++ b/components/PageHeading/PageHeading.tsx @@ -1,7 +1,7 @@ import React from "react"; const PageHeading = ({ children }: { children: React.ReactNode }) => ( -

+

{children}

); diff --git a/pages/notifications/index.tsx b/pages/notifications/index.tsx index c26a1f06..d0dee830 100644 --- a/pages/notifications/index.tsx +++ b/pages/notifications/index.tsx @@ -58,14 +58,14 @@ const Notifications = () => { const noNotifications = !data?.pages[0].data.length; const Placeholder = () => ( -
+
-
+
-
-
+
+
@@ -112,7 +112,7 @@ const Notifications = () => { }) )} {status !== "loading" && noNotifications && ( -

+

No new notifications. ✅{" "}

)} @@ -157,7 +157,7 @@ const Notifications = () => { return null; return (
-
+
{image && ( @@ -201,7 +201,7 @@ const Notifications = () => {