Skip to content

Commit

Permalink
Fix: changed the height of container from 3.3 to 3.0 (#643)
Browse files Browse the repository at this point in the history
Co-authored-by: Inderjeet Singh <[email protected]>
  • Loading branch information
inder-7 and Inderjeet Singh authored Feb 5, 2025
1 parent 5e89aa1 commit 40c2235
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/app/modules/timer/views/timer_animation.dart
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class _TimerAnimatedCardState extends State<TimerAnimatedCard>
horizontal: 10.0,
),
child: Container(
height: context.height / 3.3,
height: context.height / 3.0, // changed from 3.3 to 3.0
width: context.width,
child: Obx(
() => Card(
Expand Down Expand Up @@ -118,7 +118,7 @@ class _TimerAnimatedCardState extends State<TimerAnimatedCard>
left: 25.0,
right: 20.0,
top: 20.0,
bottom: 20.0,
bottom: 30.0,
),
child: Row(
mainAxisAlignment: MainAxisAlignment.start,
Expand Down

0 comments on commit 40c2235

Please sign in to comment.