File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -113,12 +113,12 @@ const AnalyticsView: React.FC<Props> = (props: Props) => {
113
113
</ div >
114
114
</ div >
115
115
) : (
116
- < div className = "w-full divide-y divide-gray-300" >
116
+ < div className = "w-full divide-y divide-gray-300 dark:divide-zinc-700 " >
117
117
< div className = "w-full flex flex-row justify-between items-center" >
118
118
< span className = "py-2 px-2 text-left text-sm font-semibold text-gray-500" > { t ( "analytics.operating-system" ) } </ span >
119
119
< span className = "py-2 pr-2 text-right text-sm font-semibold text-gray-500" > { t ( "analytics.visitors" ) } </ span >
120
120
</ div >
121
- < div className = "w-full divide-y divide-gray-200" >
121
+ < div className = "w-full divide-y divide-gray-200 dark:divide-zinc-800 " >
122
122
{ analytics . devices . length === 0 && (
123
123
< div className = "w-full flex flex-row justify-center items-center py-6 text-gray-400" >
124
124
< Icon . PackageOpen className = "w-6 h-auto" />
@@ -127,7 +127,9 @@ const AnalyticsView: React.FC<Props> = (props: Props) => {
127
127
) }
128
128
{ analytics . devices . map ( ( device ) => (
129
129
< div key = { device . name } className = "w-full flex flex-row justify-between items-center" >
130
- < span className = "whitespace-nowrap py-2 px-2 text-sm text-gray-900 truncate" > { device . name || "Unknown" } </ span >
130
+ < span className = "whitespace-nowrap py-2 px-2 text-sm text-gray-900 truncate dark:text-gray-500" >
131
+ { device . name || "Unknown" }
132
+ </ span >
131
133
< span className = "whitespace-nowrap py-2 pr-2 text-sm text-gray-500 text-right shrink-0" > { device . count } </ span >
132
134
</ div >
133
135
) ) }
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ const CollectionDashboard: React.FC = () => {
78
78
< Icon . PackageOpen size = { 64 } strokeWidth = { 1 } />
79
79
< p className = "mt-2" > No collections found.</ p >
80
80
< a
81
- className = "text-blue-600 border-t text-sm hover:underline flex flex-row justify-center items-center mt-4 pt-2"
81
+ className = "text-blue-600 border-t dark:border-t-zinc-600 text-sm hover:underline flex flex-row justify-center items-center mt-4 pt-2"
82
82
href = "https://github.com/yourselfhosted/slash/blob/main/docs/getting-started/collections.md"
83
83
target = "_blank"
84
84
>
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ const ShortcutDashboard: React.FC = () => {
80
80
< Icon . PackageOpen size = { 64 } strokeWidth = { 1 } />
81
81
< p className = "mt-2" > No shortcuts found.</ p >
82
82
< a
83
- className = "text-blue-600 border-t text-sm hover:underline flex flex-row justify-center items-center mt-4 pt-2"
83
+ className = "text-blue-600 border-t dark:border-t-zinc-600 text-sm hover:underline flex flex-row justify-center items-center mt-4 pt-2"
84
84
href = "https://github.com/yourselfhosted/slash/blob/main/docs/getting-started/shortcuts.md"
85
85
target = "_blank"
86
86
>
You can’t perform that action at this time.
0 commit comments