Decreased min Chrome App height

This commit is contained in:
Igor Zhukov 2014-02-02 23:15:56 +04:00
parent e2c13942cd
commit 8499d5e068
3 changed files with 23 additions and 10 deletions

View File

@ -1381,4 +1381,17 @@ img.img_fullsize {
text-align: center;
font-size: 1.4em;
line-height: 160%;
}
@media (max-width: 480px) {
.login_form_wrap {
border-radius: 0;
max-width: auto;
box-shadow: none;
-webkit-box-shadow: none;
margin: 30px auto 10px;
}
}

View File

@ -11,8 +11,8 @@ chrome.app.runtime.onLaunched.addListener(function(launchData) {
width: 1100,
height: 700
},
minWidth: 1100,
minHeight: 700,
minWidth: 1050,
minHeight: 400,
frame: 'chrome'
});
});

View File

@ -2,7 +2,7 @@
"name": "Webogram",
"description": "Webogram UNOFFICIAL Telegram Web App.\nMore info & source code here: https://github.com/zhukov/webogram",
"version": "0.0.12",
"launch_path": "/webogram/index.html",
"launch_path": "/index.html",
"developer": {
"name": "Igor Zhukov",
"url": "https://github.com/zhukov"
@ -16,12 +16,12 @@
}
},
"icons": {
"16": "/webogram/img/icons/icon16.png",
"32": "/webogram/img/icons/icon32.png",
"60": "/webogram/img/icons/icon60.png",
"64": "/webogram/img/icons/icon64.png",
"90": "/webogram/img/icons/icon90.png",
"120": "/webogram/img/icons/icon120.png",
"128": "/webogram/img/icons/icon128.png"
"16": "/img/icons/icon16.png",
"32": "/img/icons/icon32.png",
"60": "/img/icons/icon60.png",
"64": "/img/icons/icon64.png",
"90": "/img/icons/icon90.png",
"120": "/img/icons/icon120.png",
"128": "/img/icons/icon128.png"
}
}