Skip to content

Commit

Permalink
fix choose course padding for ios
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabi-02 committed Apr 7, 2024
1 parent 455e11a commit 7e930dd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/lib/components/choose/choose_course.dart
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ class _ChooseCourseState extends State<ChooseCourse> {
title: (percentage) {
return Padding(
padding: EdgeInsets.only(
left: 16 + 18.0 * percentage, bottom: 12 + 6.0 * percentage),
// left: 16 + 18.0 * percentage, bottom: 12 + 6.0 * percentage),
left: 16, bottom: 12 + 6.0 * percentage),
child: Text(
"Kurse",
style: TextStyle(
Expand Down

0 comments on commit 7e930dd

Please sign in to comment.