File tree 1 file changed +2
-2
lines changed
components/dashboard/src/components
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -16,14 +16,14 @@ function SelectableCardSolid(props: SelectableCardSolidProps) {
16
16
return (
17
17
< div
18
18
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 "
20
20
} ${ props . className || "" } `}
21
21
onClick = { props . onClick }
22
22
>
23
23
< div className = "flex items-center" >
24
24
< p
25
25
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"
27
27
} `}
28
28
title = { props . title }
29
29
>
You can’t perform that action at this time.
0 commit comments