Commit b373b507 authored by Rene Saarsoo's avatar Rene Saarsoo
Browse files

Remove min-width constraints from docs app.

For some reason the docs app had an hard-coded minimum with.
This severely impacted the usability on iPad where the browser window
width was smaller than our min-width, resulting in text going off the
screen and there being no way to get to it.
parent 7ffe79d8
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -51,7 +51,6 @@ Ext.define('Docs.view.Viewport', {
                            {
                                id: 'loginContainer',
                                xtype: 'authHeaderForm',
                                width: 500,
                                padding: '10 20 0 0'
                            },
                            {
@@ -70,7 +69,6 @@ Ext.define('Docs.view.Viewport', {
            {
                region: 'center',
                layout: 'border',
                minWidth: 800,
                items: [
                    {
                        region: 'west',
@@ -84,7 +82,6 @@ Ext.define('Docs.view.Viewport', {
                        region: 'center',
                        id: 'center-container',
                        layout: 'fit',
                        minWidth: 800,
                        border: false,
                        padding: '5 10',
                        items: {
+0 −1
Original line number Diff line number Diff line
@@ -7,7 +7,6 @@ html {
body {
  -webkit-font-smoothing: antialiased;
  font: 13px / 1.231 $docs-font;
  min-width: 980px;
  color: $docs-text-color;
  background: $docs-bg-color;
  min-height: 100%; }