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>
|
</div>
|
||||||
|
|
||||||
<div className="ml-8 flex flex-col gap-1">
|
<div className="mx-8 flex flex-col gap-1">
|
||||||
<div className="flex flex-row gap-1">
|
<input
|
||||||
{<input
|
|
||||||
className="bg-transparent outline-none font-bold text-3xl flex-grow"
|
className="bg-transparent outline-none font-bold text-3xl flex-grow"
|
||||||
defaultValue={noteMetadata.get("title")}
|
defaultValue={noteMetadata.get("title")}
|
||||||
onChange={(e) => noteMetadata.set("title", e.target.value)}
|
onChange={(e) => noteMetadata.set("title", e.target.value)}
|
||||||
/>}
|
/>
|
||||||
</div>
|
|
||||||
<Properties noteMetadata={noteMetadata} />
|
<Properties noteMetadata={noteMetadata} />
|
||||||
</div>
|
</div>
|
||||||
</>
|
</>
|
||||||
|
|
Loading…
Add table
Reference in a new issue