Skip to content

Commit

Permalink
Fixed tooltip border and added course button color on dark mode (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
joharkhan99 authored Feb 5, 2025
1 parent 62da247 commit 2802b66
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/frontend/src/components/BookmarkButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const BookmarkButton = ({ courseID }: Props) => {
return (
<div>
<PlusIcon
className="h-6 w-6"
className="h-6 w-6 dark:fill-white"
data-tooltip-id={id}
data-tooltip-place="bottom-end"
/>
Expand Down
2 changes: 1 addition & 1 deletion apps/frontend/src/components/GetTooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const GetTooltip = ({
style={{ padding: 0 }}
clickable={true}
>
<div className="flex flex-col bg-gray-50 text-gray-800 -m-1 p-3 rounded border">
<div className="flex flex-col bg-gray-50 text-gray-800 -m-1 p-3 rounded border dark:border-transparent">
<span className="text-wrap text-sm">{children}</span>
</div>
</Tooltip>
Expand Down

0 comments on commit 2802b66

Please sign in to comment.