add border around filters button

Robert Malikowski committed Jun 26, 2026 at 10:37 UTC 52b014aac2d44c359f5e6a8be649db972faf3905
1 file changed +5 -1
lib/new-ui/widgets/coins_page/assets_history/history_modal.dart
+5 -1
@@ -86,7 +86,11 @@ class HistoryModal extends StatelessWidget {
86 },
87 child: Material(
88 color: Colors.transparent,
89 - child: SizedBox(
89 + child: Container(
90 + decoration: BoxDecoration(
91 + borderRadius: BorderRadius.circular(18),
92 + border: Border.all(color: Theme.of(context).colorScheme.primary, width: 1)
93 + ),
94 height: 56,
95 width: double.infinity,
96 child: Row(