Skip to content

Commit f24912f

Browse files
mustard-mhgtsiolis
andauthored
Apply suggestions from code review
Co-authored-by: George Tsiolis <[email protected]>
1 parent 639f507 commit f24912f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/dashboard/src/components/SelectableCardSolid.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ function SelectableCardSolid(props: SelectableCardSolidProps) {
1616
return (
1717
<div
1818
className={`rounded-xl px-3 py-3 flex flex-col cursor-pointer group transition ease-in-out ${
19-
props.selected ? "bg-gray-800" : "bg-gray-100 dark:bg-gray-900 hover:bg-gray-200 dark:hover:bg-gray-800"
19+
props.selected ? "bg-gray-800 dark:bg-gray-100" : "bg-gray-100 dark:bg-gray-800 hover:bg-gray-200 dark:hover:bg-gray-700"
2020
} ${props.className || ""}`}
2121
onClick={props.onClick}
2222
>
2323
<div className="flex items-center">
2424
<p
2525
className={`w-full pl-1 text-base font-semibold truncate ${
26-
props.selected ? "text-gray-100 dark:text-gray-100" : "text-gray-800 dark:text-gray-500"
26+
props.selected ? "text-gray-100 dark:text-gray-600" : "text-gray-600 dark:text-gray-500"
2727
}`}
2828
title={props.title}
2929
>

0 commit comments

Comments
 (0)