diff --git a/lib/models/walletOptions.dart b/lib/models/walletOptions.dart
index 12cb1772a59bf6965378aa8ad1f2682c6268d5ed..3eac888be48864c6a4f201b340e61641d3eae1ab 100644
--- a/lib/models/walletOptions.dart
+++ b/lib/models/walletOptions.dart
@@ -211,7 +211,7 @@ class WalletOptionsProvider with ChangeNotifier {
     bool nameState;
     if (isEditing) {
       if (!nameController.text.contains(':') &&
-          nameController.text.length <= 45) {
+          nameController.text.length <= 39) {
         await _renameWallet(_wID, nameController.text);
         nameState = true;
       } else {
diff --git a/lib/screens/myWallets/walletOptions.dart b/lib/screens/myWallets/walletOptions.dart
index ce5bce6ae0701f8e931020004588dd8bc89a1d43..f9b4a82220db053dee92155ab770bd3ac84379a0 100644
--- a/lib/screens/myWallets/walletOptions.dart
+++ b/lib/screens/myWallets/walletOptions.dart
@@ -49,7 +49,7 @@ class WalletOptions extends StatelessWidget with ChangeNotifier {
     _walletOptions.nameController.text.length >= 15
         ? _nbrLinesName = 2
         : _nbrLinesName = 1;
-    if (_walletOptions.nameController.text.length >= 30) _nbrLinesName = 3;
+    if (_walletOptions.nameController.text.length >= 26) _nbrLinesName = 3;
 
     // print(_walletOptions.generateQRcode(_walletOptions.pubkey.text));
 
@@ -94,7 +94,7 @@ class WalletOptions extends StatelessWidget with ChangeNotifier {
                       end: Alignment.bottomCenter,
                       colors: [
                         Color(0xffFFD68E),
-                        Color(0xFFFFFCF7),
+                        Color(0xfffafafa),
                       ],
                     )),
                     child: Row(children: <Widget>[
@@ -113,7 +113,7 @@ class WalletOptions extends StatelessWidget with ChangeNotifier {
                         Row(children: <Widget>[
                           Column(children: <Widget>[
                             SizedBox(
-                              width: 250,
+                              width: 260,
                               child: TextField(
                                   // autofocus: true,
                                   focusNode: _walletOptions.walletNameFocus,
@@ -131,7 +131,8 @@ class WalletOptions extends StatelessWidget with ChangeNotifier {
                                   style: TextStyle(
                                       fontSize: 27,
                                       color: Colors.black,
-                                      fontWeight: FontWeight.w400)),
+                                      fontWeight: FontWeight.w400,
+                                      fontFamily: 'Monospace')),
                             ),
                             SizedBox(height: 5),
                             Query(
@@ -301,8 +302,8 @@ class WalletOptions extends StatelessWidget with ChangeNotifier {
                                     onPrimary: Colors.black, // foreground
                                   ),
                                   onPressed: () {
-                                    ClipboardData(
-                                        text: _walletOptions.pubkey.text);
+                                    Clipboard.setData(ClipboardData(
+                                        text: _walletOptions.pubkey.text));
                                     _walletOptions.snackCopyKey(ctx);
                                   },
                                   child: Row(children: <Widget>[