decrease padding so "Exchange" is on one line [skip ci]
OmarHatem committed
Apr 7, 2025 at 15:48 UTC
9ac784db5c27daf189fb49961202a697eafc50f3
1 file changed
+2
-2
lib/src/screens/dashboard/pages/navigation_dock.dart
+2
-2
@@ -32,7 +32,7 @@ class NavigationDock extends StatelessWidget {
32
),
33
),
34
child: Container(
35
- margin: const EdgeInsets.only(left: 16, right: 16, bottom: 16),
35
+ margin: const EdgeInsets.only(left: 8, right: 8, bottom: 16),
36
child: ClipRRect(
37
borderRadius: BorderRadius.circular(50),
38
child: BackdropFilter(
@@ -48,7 +48,7 @@ class NavigationDock extends StatelessWidget {
48
Theme.of(context).extension<SyncIndicatorTheme>()!.syncedBackgroundColor,
49
),
50
child: Container(
51
- padding: EdgeInsets.symmetric(horizontal: 10),
51
+ padding: EdgeInsets.symmetric(horizontal: 8),
52
child: IntrinsicHeight(
53
child: Row(
54
mainAxisAlignment: MainAxisAlignment.spaceBetween,