Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/components/CourseNode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ export default function CourseNode({ data }: NodeProps<CourseNodeType>) {

return (
<div
className={`flex flex-col justify-center rounded border ${borderColour} bg-white px-3 py-2 shadow-sm transition-opacity duration-150`}
className={`title flex flex-col justify-center rounded border ${borderColour} bg-white px-3 py-2 shadow-sm transition-opacity duration-150`}
Comment thread
AJaccP marked this conversation as resolved.
Outdated
title={data.title}
style={{ width: 180, height: 60, opacity: dimmed ? 0.25 : 1 }}
>
<Handle type="target" position={Position.Top} />
Expand Down
Loading