Skip to content

Commit

Permalink
tiny fix
Browse files Browse the repository at this point in the history
  • Loading branch information
codekeyz committed Jan 6, 2024
1 parent 343cfa3 commit ec130c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/lib/blog/widgets/detail_layout.dart
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class ArticleDetailLayoutState extends State<ArticleDetailLayout> {
@override
Widget build(BuildContext context) {
final pageWith = MediaQuery.of(context).size.width;
final widthToUse = pageWith < 400 ? 400 : pageWith * 0.7;
final widthToUse = pageWith <= 400 ? pageWith * 0.9 : pageWith * 0.7;

return ScaffoldPage(
padding: EdgeInsets.zero,
Expand Down

0 comments on commit ec130c7

Please sign in to comment.