Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
monkeyWie committed Oct 20, 2023
1 parent 29d2866 commit 306537d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class ExtensionView extends GetView<ExtensionController> {
itemBuilder: (context, index) {
final extension = controller.extensions[index];
return SizedBox(
height: 168,
height: ResponsiveBuilder.isNarrow(context) ? 168 : 112,
child: Card(
elevation: 4.0,
child: Column(
Expand Down

0 comments on commit 306537d

Please sign in to comment.