diff options
author | Whymarrh Whitby <whymarrh.whitby@gmail.com> | 2018-09-20 02:22:39 +0800 |
---|---|---|
committer | Whymarrh Whitby <whymarrh.whitby@gmail.com> | 2018-09-20 02:33:16 +0800 |
commit | fbf14cd130c6f7f73697fad28730da485cb7c946 (patch) | |
tree | e276cc370096a45a289b71968853ceb582072ede /ui/app/components/page-container | |
parent | 4c376695573ea2372e25b1a14ed31edb5f613d2d (diff) | |
download | tangerine-wallet-browser-fbf14cd130c6f7f73697fad28730da485cb7c946.tar tangerine-wallet-browser-fbf14cd130c6f7f73697fad28730da485cb7c946.tar.gz tangerine-wallet-browser-fbf14cd130c6f7f73697fad28730da485cb7c946.tar.bz2 tangerine-wallet-browser-fbf14cd130c6f7f73697fad28730da485cb7c946.tar.lz tangerine-wallet-browser-fbf14cd130c6f7f73697fad28730da485cb7c946.tar.xz tangerine-wallet-browser-fbf14cd130c6f7f73697fad28730da485cb7c946.tar.zst tangerine-wallet-browser-fbf14cd130c6f7f73697fad28730da485cb7c946.zip |
Prevent loading screen from overlaying the app bar
Refs #4417
This change is functional copy of 3893469 that solves the problem in a way
that doesn't depend on the height of the app bar since the app bar isn't a
fixed height in the smaller views.
Diffstat (limited to 'ui/app/components/page-container')
-rw-r--r-- | ui/app/components/page-container/index.scss | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/app/components/page-container/index.scss b/ui/app/components/page-container/index.scss index 14cdbacd3..61434cbcf 100644 --- a/ui/app/components/page-container/index.scss +++ b/ui/app/components/page-container/index.scss @@ -182,5 +182,7 @@ max-height: 82vh; min-height: 570px; flex: 0 0 auto; + margin-right: auto; + margin-left: auto; } } |