Skip to content

Commit

Permalink
fix(dailyNotes): make horizontal padding same width as note
Browse files Browse the repository at this point in the history
  • Loading branch information
thesophiaxu committed Mar 27, 2022
1 parent d0ee8ce commit 70b2a61
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ React.useEffect(() => {
}, []);

return note && note?.type?.['unigraph.id'] === '$/schema/journal' ? (
<AutoDynamicViewDetailed object={note} />
<div style={{ margin: '0px -16px', display: 'flex' }}>
<AutoDynamicViewDetailed object={note} />
</div>
) : note ? (
''
) : (
Expand Down

0 comments on commit 70b2a61

Please sign in to comment.