We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 598f41f commit e3f3f9dCopy full SHA for e3f3f9d
src/components/EditorCanvas/Note.jsx
@@ -135,8 +135,11 @@ export default function Note({ data, onMouseDown }) {
135
onMouseDown={onMouseDown}
136
>
137
<div className="text-gray-900 select-none w-full h-full cursor-move px-3 py-2">
138
- <div className="flex justify-between">
139
- <label htmlFor={`note_${data.id}`} className="ms-5">
+ <div className="flex justify-between gap-1 w-full">
+ <label
140
+ htmlFor={`note_${data.id}`}
141
+ className="ms-5 overflow-hidden text-ellipsis"
142
+ >
143
{data.title}
144
</label>
145
{(hovered ||
0 commit comments