diff options
author | sdtsui <szehungdanieltsui@gmail.com> | 2017-08-03 13:59:04 +0800 |
---|---|---|
committer | sdtsui <szehungdanieltsui@gmail.com> | 2017-08-03 13:59:04 +0800 |
commit | c47f81b2e0274d45eaef9bfc01118d7c19a3fa1b (patch) | |
tree | 7c72d7b1acc993c7fb66f88fd6e41abf22f158d1 /ui | |
parent | b523faba1333caa2f05d7721b8b623a84047ac40 (diff) | |
download | tangerine-wallet-browser-c47f81b2e0274d45eaef9bfc01118d7c19a3fa1b.tar tangerine-wallet-browser-c47f81b2e0274d45eaef9bfc01118d7c19a3fa1b.tar.gz tangerine-wallet-browser-c47f81b2e0274d45eaef9bfc01118d7c19a3fa1b.tar.bz2 tangerine-wallet-browser-c47f81b2e0274d45eaef9bfc01118d7c19a3fa1b.tar.lz tangerine-wallet-browser-c47f81b2e0274d45eaef9bfc01118d7c19a3fa1b.tar.xz tangerine-wallet-browser-c47f81b2e0274d45eaef9bfc01118d7c19a3fa1b.tar.zst tangerine-wallet-browser-c47f81b2e0274d45eaef9bfc01118d7c19a3fa1b.zip |
Finalize width of main container for all viewports
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/css/index.css | 31 |
1 files changed, 19 insertions, 12 deletions
diff --git a/ui/app/css/index.css b/ui/app/css/index.css index ceeffdd27..779d0646d 100644 --- a/ui/app/css/index.css +++ b/ui/app/css/index.css @@ -722,7 +722,7 @@ div.message-container > div:first-child { } .main-container { - width: 100%; + position: absolute; z-index: 18; box-shadow: 0 0 7px 0 rgba(0,0,0,0.08); font-family: DIN OT; @@ -742,16 +742,22 @@ div.message-container > div:first-child { } .main-container { - // position: absolute; - // margin-top: 35px; - // z-index: 18; - // box-shadow: 0 0 7px 0 rgba(0,0,0,0.08); - // font-family: DIN OT; - // display: flex; - // flex-wrap: wrap; - // align-items: stretch; - // overflow-y: scroll; - // width: 100%; + margin-top: 35px; + width: 85%; + } +} + +@media screen and (min-width: 769px) { + .main-container { + margin-top: 35px; + width: 80%; + } +} + +@media screen and (min-width: 1281px) { + .main-container { + margin-top: 35px; + width: 65%; } } @@ -765,7 +771,8 @@ div.message-container > div:first-child { } .main-container { - position: absolute; margin-top: 35px; + // position: relative; + width: 100%; } }
\ No newline at end of file |