We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3457af commit 644eee1Copy full SHA for 644eee1
css/app.css
@@ -1,6 +1,8 @@
1
+
2
#container {
3
width: 400px;
4
height: 400px;
5
+ margin: 20px auto 0 ;
6
}
7
8
#uploader {
js/background.js
@@ -1,6 +1,6 @@
chrome.browserAction.onClicked.addListener(function (tab) {
- var w = 400;
- var h = 400;
+ var w = 500;
+ var h = 450;
var left = Math.round((screen.width / 2) - (w / 2));
var top = Math.round((screen.height / 2) - (h / 2));
if (!checkOptions()) {
@@ -32,4 +32,4 @@ function checkOptions() {
32
33
});
34
return true;
35
-}
+}
0 commit comments