Skip to content

Commit

Permalink
fix light theme drop shadow issue
Browse files Browse the repository at this point in the history
  • Loading branch information
abeatrix committed Jan 8, 2025
1 parent 113866a commit 43fd35b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions vscode/webviews/chat/cells/contextCell/ContextCell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -505,13 +505,13 @@ const ProcessItem: FC<{ process: ProcessingStep; isContextLoading: boolean }> =
<CircleXIcon
strokeWidth={2}
size={14}
className="high-contrast-dark:tw-text-red-500"
className="tw-text-red-500 tw-drop-shadow-md"
/>
) : (
<CheckCircle
strokeWidth={2}
size={14}
className="tw-text-green-500 tw-drop-shadow-md tw-shadow-md"
className="tw-text-green-500 tw-drop-shadow-md"
/>
)}
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export const ToolboxButton: FC<ToolboxButtonProps> = memo(({ settings, api }) =>
<FlaskConicalIcon
size={16}
strokeWidth={1.25}
className="tw-w-8 tw-h-8 tw-text-green-700"
className="tw-w-8 tw-h-8 tw-text-green-600 tw-drop-shadow-md"
/>
) : (
<FlaskConicalOffIcon
Expand Down

0 comments on commit 43fd35b

Please sign in to comment.