Skip to content

Commit

Permalink
layout fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nbonamy committed Mar 8, 2024
1 parent b2eba52 commit 0b29b28
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/editor/editor.dart
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ class _TagEditorWidgetState extends State<TagEditorWidget> with MenuHandler {
// return
return DraggableDialog(
width: 500,
height: 585,
height: 590,
preferenceKey: 'editor.alignment',
header: Row(
children: [
Expand Down
4 changes: 2 additions & 2 deletions lib/editor/file.dart
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class EditorFileWidget extends StatelessWidget {
bool tabularFigures = false,
}) {
return Padding(
padding: const EdgeInsets.symmetric(vertical: 4),
padding: const EdgeInsets.symmetric(vertical: 2),
child: Flex(
direction: Axis.horizontal,
crossAxisAlignment: CrossAxisAlignment.start,
Expand All @@ -108,7 +108,7 @@ class EditorFileWidget extends StatelessWidget {

Widget _label(String label, double paddingTop) {
return SizedBox(
width: 130,
width: 120,
child: Padding(
padding: EdgeInsets.only(top: paddingTop, right: 8),
child: Text(
Expand Down

0 comments on commit 0b29b28

Please sign in to comment.