Skip to content

Commit 536ae7d

Browse files
committed
Border color change
1 parent f431f88 commit 536ae7d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/react-app/src/components/home/blueprints.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ export function Blueprints(props: {
3232
<li key={blueprint.id} className="flow-root">
3333
<div
3434
className={Utils.classNames(
35-
"cursor-pointer border border-transparent relative -m-2 p-2 flex items-center space-x-4 rounded-xl hover:bg-gray-50 focus-within:ring-2 focus-within:ring-indigo-500",
35+
"cursor-pointer border relative -m-2 p-2 flex items-center space-x-4 rounded-xl hover:bg-gray-50 focus-within:ring-2 focus-within:ring-indigo-500",
3636
blueprint.id === props.selectedBlueprintId
3737
? "border-indigo-300 bg-gray-50"
38-
: "hover:border-gray-200"
38+
: "border-transparent hover:border-indigo-300"
3939
)}
4040
onClick={() => onSelectClick(blueprint.id)}
4141
>

0 commit comments

Comments
 (0)