@@ -29,7 +29,9 @@ const HistoryAndNotifications = ({
29
29
< div className = "flex-1 overflow-y-auto p-4 border-r" >
30
30
< h2 className = "text-lg font-semibold mb-4" > History</ h2 >
31
31
{ 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 >
33
35
) : (
34
36
< ul className = "space-y-3" >
35
37
{ requestHistory
@@ -38,7 +40,7 @@ const HistoryAndNotifications = ({
38
40
. map ( ( request , index ) => (
39
41
< li
40
42
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"
42
44
>
43
45
< div
44
46
className = "flex justify-between items-center cursor-pointer"
@@ -93,7 +95,9 @@ const HistoryAndNotifications = ({
93
95
< div className = "flex-1 overflow-y-auto p-4" >
94
96
< h2 className = "text-lg font-semibold mb-4" > Server Notifications</ h2 >
95
97
{ 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 >
97
101
) : (
98
102
< ul className = "space-y-3" >
99
103
{ serverNotifications
@@ -102,7 +106,7 @@ const HistoryAndNotifications = ({
102
106
. map ( ( notification , index ) => (
103
107
< li
104
108
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"
106
110
>
107
111
< div
108
112
className = "flex justify-between items-center cursor-pointer"
0 commit comments