Use correct dependency order to fix OAuth login problem; this fixes #431
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4cc7c92..25d7622 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,5 @@
 ## CHANGES in 0.10:
+- Bug: Use correct dependency order to fix OAuth login problem (#431)
 - Bug: HTTPS connections may fail with ES 6.x libraries (#425)
 - Enh: Support ES 6.x library (#424)
 - Enh: Optionally dump JSON documents to disk if push to ES fails (#423).
diff --git a/site/js/ponymail.js b/site/js/ponymail.js
index 84fa8eb..8f9cc00 100644
--- a/site/js/ponymail.js
+++ b/site/js/ponymail.js
@@ -1519,7 +1519,9 @@
             
             thread.innerHTML += "<br/>"
             //thread.style.border = "1px dotted #666"
-            thread.style.padding = "5px"
+            thread.style.padding = "0px"
+            thread.style.leftpadding = "10px"
+            thread.style.rightpadding = "0px"
             thread.style.fontFamily = "Hack"
             
             var fields = ['From', 'To', 'CC', 'Subject', 'Date']
diff --git a/site/oauth.html b/site/oauth.html
index fa2e68f..e20e681 100644
--- a/site/oauth.html
+++ b/site/oauth.html
@@ -60,8 +60,8 @@
   <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
     <!-- Include all compiled plugins (below), or include individual files as needed -->
     <script src="js/bootstrap.min.js"></script>
+    <script src="js/config.js"></script>
     <script src="js/ponymail.js"></script>
     <script src="js/oauth.js"></script>
-    <script src="js/config.js"></script>
   </body>
 </html>
\ No newline at end of file