From 6885c3879a1bafefb770548540f5900fb61101c0 Mon Sep 17 00:00:00 2001 From: Fabian Freund Date: Tue, 2 Jun 2026 12:54:40 +0200 Subject: [PATCH] fix search card padding --- .../presentation/widgets/web_search_results_section.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/weblibre/lib/features/web_search/presentation/widgets/web_search_results_section.dart b/apps/weblibre/lib/features/web_search/presentation/widgets/web_search_results_section.dart index 025cedf8..f239c2bc 100644 --- a/apps/weblibre/lib/features/web_search/presentation/widgets/web_search_results_section.dart +++ b/apps/weblibre/lib/features/web_search/presentation/widgets/web_search_results_section.dart @@ -133,7 +133,7 @@ class WebSearchResultsSection extends HookConsumerWidget { if (state.results.isNotEmpty || state.infos.isNotEmpty) { return SliverPadding( - padding: const EdgeInsets.fromLTRB(16, 0, 16, 16), + padding: const EdgeInsets.fromLTRB(8, 0, 8, 16), sliver: SliverMainAxisGroup( slivers: [ if (state.infos.length == 1)