diff --git a/lib/ui/screens/fifth_screen.dart b/lib/ui/screens/fifth_screen.dart
index f7923afb91efb718971f52bcf8b68acc3a42eddb..eed56289251d3abcfe6c30a7f30659c448ac93f0 100644
--- a/lib/ui/screens/fifth_screen.dart
+++ b/lib/ui/screens/fifth_screen.dart
@@ -73,6 +73,7 @@ class FifthScreen extends StatelessWidget {
                     const TextDivider(text: 'faq_title'),
                     const FAQ(),
                     const TextDivider(text: 'key_tools_title'),
+                    const SizedBox(height: 20),
                     GridView.count(
                         physics: const NeverScrollableScrollPhysics(),
                         crossAxisCount: 2,
@@ -82,30 +83,6 @@ class FifthScreen extends StatelessWidget {
                         shrinkWrap: true,
                         padding: EdgeInsets.zero,
                         children: <GridItem>[
-                          if (state.expertMode)
-                            GridItem(
-                                title: 'export_key',
-                                icon: Icons.download,
-                                onTap: () {
-                                  showDialog(
-                                    context: context,
-                                    builder: (BuildContext context) {
-                                      return const ExportDialog();
-                                    },
-                                  );
-                                }),
-                          if (state.expertMode)
-                            GridItem(
-                                title: 'import_key',
-                                icon: Icons.upload,
-                                onTap: () {
-                                  showDialog(
-                                    context: context,
-                                    builder: (BuildContext context) {
-                                      return const ImportDialog();
-                                    },
-                                  );
-                                }),
                           if (showShare())
                             GridItem(
                                 title: 'share_your_key',
@@ -116,7 +93,29 @@ class FifthScreen extends StatelessWidget {
                             title: 'copy_your_key',
                             icon: Icons.copy,
                             onTap: () => copyPublicKeyToClipboard(context),
-                          )
+                          ),
+                          GridItem(
+                              title: 'export_key',
+                              icon: Icons.download,
+                              onTap: () {
+                                showDialog(
+                                  context: context,
+                                  builder: (BuildContext context) {
+                                    return const ExportDialog();
+                                  },
+                                );
+                              }),
+                          GridItem(
+                              title: 'import_key',
+                              icon: Icons.upload,
+                              onTap: () {
+                                showDialog(
+                                  context: context,
+                                  builder: (BuildContext context) {
+                                    return const ImportDialog();
+                                  },
+                                );
+                              }),
                         ]),
                     if (state.expertMode)
                       const TextDivider(text: 'technical_info_title'),