style: align text in file tree component for improved readability

This commit is contained in:
Mauricio Siu
2025-07-04 23:17:19 -06:00
parent 9cfbd664c5
commit 8e8712e33d

View File

@@ -246,7 +246,9 @@ const Leaf = React.forwardRef<
aria-hidden="true"
/>
)}
<p className=" text-sm whitespace-normal font-mono">{item.name}</p>
<p className=" text-sm whitespace-normal font-mono text-left">
{item.name}
</p>
</button>
);
});