Fix horizontal overflow on the text note edit page on chrome. Fixes #40
All checks were successful
/ Push Docker image to local registry (push) Successful in 3m11s
All checks were successful
/ Push Docker image to local registry (push) Successful in 3m11s
This commit is contained in:
parent
613c65beca
commit
db9cd4f91e
1 changed files with 6 additions and 8 deletions
|
@ -38,14 +38,12 @@ export function NoteHeader(props: { id: NoteId }) {
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div className="ml-8 flex flex-col gap-1">
|
||||
<div className="flex flex-row gap-1">
|
||||
{<input
|
||||
className="bg-transparent outline-none font-bold text-3xl flex-grow"
|
||||
defaultValue={noteMetadata.get("title")}
|
||||
onChange={(e) => noteMetadata.set("title", e.target.value)}
|
||||
/>}
|
||||
</div>
|
||||
<div className="mx-8 flex flex-col gap-1">
|
||||
<input
|
||||
className="bg-transparent outline-none font-bold text-3xl flex-grow"
|
||||
defaultValue={noteMetadata.get("title")}
|
||||
onChange={(e) => noteMetadata.set("title", e.target.value)}
|
||||
/>
|
||||
<Properties noteMetadata={noteMetadata} />
|
||||
</div>
|
||||
</>
|
||||
|
|
Loading…
Add table
Reference in a new issue