diff options
author | sdtsui <szehungdanieltsui@gmail.com> | 2017-08-01 14:07:58 +0800 |
---|---|---|
committer | sdtsui <szehungdanieltsui@gmail.com> | 2017-08-01 14:07:58 +0800 |
commit | a7fc5126502a9c69aaa727178997ea4ed703c2d6 (patch) | |
tree | aabe5b2b2d8acfa2c2606ba2d74f3efbc69648ef /ui/app/app.js | |
parent | 9cc461a6c2348ffd1a884e0ca92d74294cce6b4e (diff) | |
download | tangerine-wallet-browser-a7fc5126502a9c69aaa727178997ea4ed703c2d6.tar tangerine-wallet-browser-a7fc5126502a9c69aaa727178997ea4ed703c2d6.tar.gz tangerine-wallet-browser-a7fc5126502a9c69aaa727178997ea4ed703c2d6.tar.bz2 tangerine-wallet-browser-a7fc5126502a9c69aaa727178997ea4ed703c2d6.tar.lz tangerine-wallet-browser-a7fc5126502a9c69aaa727178997ea4ed703c2d6.tar.xz tangerine-wallet-browser-a7fc5126502a9c69aaa727178997ea4ed703c2d6.tar.zst tangerine-wallet-browser-a7fc5126502a9c69aaa727178997ea4ed703c2d6.zip |
Implement mobile-friendly responsive layout with flex wrap
Diffstat (limited to 'ui/app/app.js')
-rw-r--r-- | ui/app/app.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/app/app.js b/ui/app/app.js index 4f877bc51..021ef5f27 100644 --- a/ui/app/app.js +++ b/ui/app/app.js @@ -73,7 +73,9 @@ App.prototype.render = function () { h('.flex-column.full-height', { style: { // Windows was showing a vertical scroll bar: - overflow: 'hidden', + overflowX: 'hidden', + // TODO: check with dev who committed L75, see if this still happens, and whether auto is enough + // overflowY: 'auto', position: 'relative', alignItems: 'center', }, |