style: adjust secondary page titlebar button spacing
This commit is contained in:
parent
ad24ac3e95
commit
87dbc33231
2 changed files with 2 additions and 2 deletions
|
|
@ -38,7 +38,7 @@ export function SecondaryPageTitlebar({
|
|||
}): JSX.Element {
|
||||
return (
|
||||
<Titlebar className="justify-between">
|
||||
<div className="flex items-center gap-2 flex-1 w-0">
|
||||
<div className="flex items-center gap-1 flex-1 w-0">
|
||||
<BackButton hide={hideBackButton} />
|
||||
<div className="truncate text-lg">{content}</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ export default function NotePage({ event }: { event?: Event }) {
|
|||
if (!event) return null
|
||||
|
||||
return (
|
||||
<SecondaryPageLayout titlebarContent="Note">
|
||||
<SecondaryPageLayout titlebarContent="note">
|
||||
{rootEvent && <ParentNote key={`root-note-${event.id}`} event={rootEvent} />}
|
||||
{parentEvent && <ParentNote key={`parent-note-${event.id}`} event={parentEvent} />}
|
||||
<Note key={`note-${event.id}`} event={event} fetchNoteStats />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue