Skip to content

Commit 36942e7

Browse files
committed
style: refine border styling in EmptyContentPrompt for improved dark mode support
- Updated border color in EmptyContentPrompt to enhance visibility and consistency in dark mode.
1 parent 11b5a8a commit 36942e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/web/src/pages/pages/components/EmptyContentPrompt.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ const EmptyContentPrompt: FC<EmptyContentPromptProps> = ({
336336
</div>
337337

338338
{/* Action bar - fixed at bottom */}
339-
<div className="p-4 border-t border-solid border-1 border-x-0 border-b-0 border-gray-300 dark:border-gray-700 flex justify-between items-center bg-white dark:bg-gray-900 sticky bottom-0 left-0 right-0 z-10">
339+
<div className="p-4 border-t border-solid border-1 border-x-0 border-b-0 border-transparent dark:border-gray-700 flex justify-between items-center bg-white dark:bg-gray-900 sticky bottom-0 left-0 right-0 z-10">
340340
<div className="text-sm text-gray-500">
341341
{selectedNodeIds.length > 0
342342
? t('common.selectedItems', `Selected ${selectedNodeIds.length} items`, {

0 commit comments

Comments
 (0)