Skip to content

Commit

Permalink
Improve whitespace in datetime modal on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasn committed Jul 15, 2022
1 parent aef0973 commit e6c7c15
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Changed:
- Improved whitespace in DateTime modal on mobile

## [0.8.108] - 2022-07-15
### Added:
- Wildcard matches in story charts

Expand Down
11 changes: 8 additions & 3 deletions lib/widgets/journal/entry_datetime_modal.dart
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,17 @@ class _EntryDateTimeModalState extends State<EntryDateTimeModal> {
return const SizedBox.shrink();
}

return Container(
height: 200,
return ColoredBox(
color: colorConfig().bodyBgColor,
child: Padding(
padding: const EdgeInsets.all(16),
padding: const EdgeInsets.only(
left: 16,
right: 16,
top: 24,
bottom: 40,
),
child: Column(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
Row(
children: [
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: lotti
description: A Smart Journal.
publish_to: 'none'
version: 0.8.108+1158
version: 0.8.109+1159

msix_config:
display_name: Lotti
Expand Down

0 comments on commit e6c7c15

Please sign in to comment.