[WO-629] Configure responsive breakpoints and start chrome app in desktop mode

This commit is contained in:
Tankred Hase 2014-11-04 19:17:52 +01:00
parent a65435a771
commit 650aa83958
2 changed files with 6 additions and 6 deletions

View File

@ -11,8 +11,8 @@ chrome.app.runtime.onLaunched.addListener(function() {
// open chrome app in new window
chrome.app.window.create('index.html', {
'bounds': {
'width': 1024,
'height': 768
'width': 1280,
'height': 800
}
});
});

View File

@ -43,10 +43,10 @@ $color-touch-active: rgba(0, 0, 0, 0.1);
// Breakpoints
// -------------------------------------------
$screen-sm-max: 840px;
$screen-md-min: 841px;
$screen-md-max: 1280px;
$screen-lg-min: 1281px;
$screen-sm-max: 699px;
$screen-md-min: 700px;
$screen-md-max: 1099px;
$screen-lg-min: 1100px;
// Layout
// -------------------------------------------