feat(notes): fix help icon and save icon positioning

This commit is contained in:
Triston Armstrong 2024-10-22 14:07:48 -04:00
parent f7b392f909
commit 2398d10c9f
Signed by: tristonarmstrong
GPG Key ID: A23B48AE45EB6EFE

View File

@ -196,8 +196,11 @@ export function NoteCard({ key: itemKey, data: item }: NoteCard.NoteCardProps) {
<div className="overflow-hidden flex-1 flex flex-col gap-1"> <div className="overflow-hidden flex-1 flex flex-col gap-1">
{/* Header Bar */} {/* Header Bar */}
<div className="px-2 flex justify-between items-center cursor-move" onmousedown={_handleMouseDown}> <div className="px-2 flex justify-between items-center cursor-move" onmousedown={_handleMouseDown}>
<HelpIcon onMouseOver={_handleHelpHover} onMouseOut={_handleHelpOut} /> <div className={"flex gap-1 items-center"}>
<div style={saveIndicatorStyle} className="rounded-full w-1 h-1 dark:bg-white bg-green-500"></div> <HelpIcon onMouseOver={_handleHelpHover} onMouseOut={_handleHelpOut} />
{/* Save indicator*/}
<div style={saveIndicatorStyle} className="rounded-full w-1 h-1 dark:bg-white bg-green-500"></div>
</div>
<div className="flex gap-2"> <div className="flex gap-2">
<div <div
onclick={_handleExportClick} onclick={_handleExportClick}