From 8ecc9393cfd8fc786dd1c661952f8e5dea515685 Mon Sep 17 00:00:00 2001 From: Simon Ding Date: Sat, 10 Aug 2024 11:16:17 +0800 Subject: [PATCH] fix: width 126->120 --- ui/lib/welcome_page.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/lib/welcome_page.dart b/ui/lib/welcome_page.dart index 4cef276..577ddc9 100644 --- a/ui/lib/welcome_page.dart +++ b/ui/lib/welcome_page.dart @@ -57,7 +57,7 @@ class WelcomePage extends ConsumerWidget { class MediaCard extends StatelessWidget { final MediaDetail item; - static const double smallWidth = 126; + static const double smallWidth = 120; static const double largeWidth = 140; const MediaCard({super.key, required this.item});