Skip to content

Commit

Permalink
Fix text height for folder cards to avoid cutting off text (#1755)
Browse files Browse the repository at this point in the history
Fixes #1746
  • Loading branch information
nilsreichardt authored Oct 10, 2024
1 parent 6704a1d commit 3082616
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/lib/filesharing/widgets/card_with_icon_and_text.dart
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class CardWithIconAndText extends StatelessWidget {
Expanded(
child: Text(
text!,
style: const TextStyle(fontSize: 16),
style: const TextStyle(fontSize: 16, height: 1.3),
overflow: TextOverflow.ellipsis,
maxLines: 2,
),
Expand Down

0 comments on commit 3082616

Please sign in to comment.