aboutsummaryrefslogtreecommitdiffstats
path: root/responsive-ui/app/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'responsive-ui/app/app.js')
-rw-r--r--responsive-ui/app/app.js15
1 files changed, 13 insertions, 2 deletions
diff --git a/responsive-ui/app/app.js b/responsive-ui/app/app.js
index 1cfa2d7a9..d1a20f079 100644
--- a/responsive-ui/app/app.js
+++ b/responsive-ui/app/app.js
@@ -77,6 +77,8 @@ App.prototype.render = function () {
// Windows was showing a vertical scroll bar:
overflow: 'hidden',
position: 'relative',
+ height: '100%',
+ alignItems: 'center',
},
}, [
@@ -91,7 +93,12 @@ App.prototype.render = function () {
}),
// panel content
- h('.app-primary.flex-grow' + (transForward ? '.from-right' : '.from-left'), [
+ h('.app-primary.flex-grow' + (transForward ? '.from-right' : '.from-left'), {
+ style: {
+ height: '100%',
+ maxWidth: '850px',
+ },
+ }, [
h(ReactCSSTransitionGroup, {
className: 'css-transition-group',
transitionName: 'main',
@@ -116,7 +123,11 @@ App.prototype.renderAppBar = function () {
return (
- h('div', [
+ h('div', {
+ style: {
+ width: '100%'
+ },
+ }, [
h('.app-header.flex-row.flex-space-between', {
style: {