diff --git a/app/makeqr.py b/app/makeqr.py
index 4a1c8141ed2dc148368b45d4b023d042a39e630c..0480fa57d0580ac4f8585d34d1e9a3fad8c59bfa 100644
--- a/app/makeqr.py
+++ b/app/makeqr.py
@@ -8,8 +8,8 @@ def makeQR(text): #This function is used to create a QR code and encode it base6
     qr = QRCode(   
     version=1,   
     error_correction=constants.ERROR_CORRECT_L,   
-    box_size=20,   
-    border=4, 
+    box_size=10,   
+    border=1, 
     ) 
     qr.add_data(text) 
     qr.make(fit=True)