diff --git a/refilc_mobile_ui/lib/pages/grades/grades_count_item.dart b/refilc_mobile_ui/lib/pages/grades/grades_count_item.dart index 2a27495a..eee6fc82 100644 --- a/refilc_mobile_ui/lib/pages/grades/grades_count_item.dart +++ b/refilc_mobile_ui/lib/pages/grades/grades_count_item.dart @@ -67,12 +67,15 @@ class GradesCountItem extends StatelessWidget { ), SizedBox( width: 22.0, - child: Text( - count.toString(), - textAlign: TextAlign.center, - style: const TextStyle( - fontWeight: FontWeight.w500, - fontSize: 14.0, + child: FittedBox( + fit: BoxFit.scaleDown, + child: Text( + count.toString(), + textAlign: TextAlign.center, + style: const TextStyle( + fontWeight: FontWeight.w500, + fontSize: 14.0, + ), ), ), ),