@@ -29,7 +29,9 @@ const HistoryAndNotifications = ({
2929 < div className = "flex-1 overflow-y-auto p-4 border-r" >
3030 < h2 className = "text-lg font-semibold mb-4" > History</ h2 >
3131 { requestHistory . length === 0 ? (
32- < p className = "text-sm text-gray-500 italic" > No history yet</ p >
32+ < p className = "text-sm text-gray-500 dark:text-gray-400 italic" >
33+ No history yet
34+ </ p >
3335 ) : (
3436 < ul className = "space-y-3" >
3537 { requestHistory
@@ -38,7 +40,7 @@ const HistoryAndNotifications = ({
3840 . map ( ( request , index ) => (
3941 < li
4042 key = { index }
41- className = "text-sm text-foreground bg-secondary p-2 rounded"
43+ className = "text-sm text-foreground bg-secondary py-2 px-3 rounded"
4244 >
4345 < div
4446 className = "flex justify-between items-center cursor-pointer"
@@ -93,7 +95,9 @@ const HistoryAndNotifications = ({
9395 < div className = "flex-1 overflow-y-auto p-4" >
9496 < h2 className = "text-lg font-semibold mb-4" > Server Notifications</ h2 >
9597 { serverNotifications . length === 0 ? (
96- < p className = "text-sm text-gray-500 italic" > No notifications yet</ p >
98+ < p className = "text-sm text-gray-500 dark:text-gray-400 italic" >
99+ No notifications yet
100+ </ p >
97101 ) : (
98102 < ul className = "space-y-3" >
99103 { serverNotifications
@@ -102,7 +106,7 @@ const HistoryAndNotifications = ({
102106 . map ( ( notification , index ) => (
103107 < li
104108 key = { index }
105- className = "text-sm text-foreground bg-secondary p-2 rounded"
109+ className = "text-sm text-foreground bg-secondary py-2 px-3 rounded"
106110 >
107111 < div
108112 className = "flex justify-between items-center cursor-pointer"
0 commit comments