Skip to content

Commit

Permalink
💄 Updated margins
Browse files Browse the repository at this point in the history
  • Loading branch information
PHPLukaas committed Apr 11, 2024
1 parent 288d777 commit 5b47423
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class WeekSchedulePage extends StatelessWidget {
.toList();

return Padding(
padding: const EdgeInsets.only(top: 30.0),
padding: const EdgeInsets.only(top: 20.0),
child: SizedBox(
height: MediaQuery.of(context).size.height,
child: PageView.builder(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class DayScheduleWidget extends StatelessWidget {
],
),
),
const SizedBox(height: 30),
const SizedBox(height: 20),
...daySchedule.events.map((event) {
return EventDetails(event: event);
}),
Expand Down

0 comments on commit 5b47423

Please sign in to comment.