1
0
mirror of https://github.com/GitJournal/GitJournal.git synced 2025-07-27 06:04:37 +08:00

ChecklistEditor: Remove extra padding between editor and title

This commit is contained in:
Vishesh Handa
2020-02-15 03:10:45 +01:00
parent 9fc9e9f69d
commit e658b69039

@ -99,7 +99,7 @@ class ChecklistEditorState extends State<ChecklistEditor>
);
var titleEditor = Padding(
padding: const EdgeInsets.all(16.0),
padding: const EdgeInsets.fromLTRB(16.0, 16.0, 16.0, 0.0),
child: _NoteTitleEditor(_titleTextController),
);