mirror of
https://github.com/Wei-Shaw/claude-relay-service.git
synced 2026-01-22 16:43:35 +00:00
fix(ui): correct table row striping in API Keys view
Fixed second row appearing white due to invalid Tailwind CSS class bg-gray-850. Replaced with valid bg-gray-700/30 for odd rows and kept bg-gray-800/40 for even rows to enhance dark mode contrast.
This commit is contained in:
@@ -404,7 +404,7 @@
|
||||
'table-row transition-all duration-150',
|
||||
index % 2 === 0
|
||||
? 'bg-white dark:bg-gray-800/40'
|
||||
: 'dark:bg-gray-850/40 bg-gray-50/70',
|
||||
: 'bg-gray-50/70 dark:bg-gray-700/30',
|
||||
'border-b-2 border-gray-200/80 dark:border-gray-700/50',
|
||||
'hover:bg-blue-50/60 hover:shadow-sm dark:hover:bg-blue-900/20'
|
||||
]"
|
||||
|
||||
Reference in New Issue
Block a user