diff options
author | Dan Miller <danjm.com@gmail.com> | 2018-11-09 00:03:31 +0800 |
---|---|---|
committer | Dan Miller <danjm.com@gmail.com> | 2018-12-04 11:36:22 +0800 |
commit | d5411e772d1efd8d723eb81403fa22b03b904f49 (patch) | |
tree | f606a9c0c12035055500696fb06d9cdc72e10859 /ui/app/css | |
parent | a44596ec0dc45fa0d3a950847ff68f7a53f9625f (diff) | |
download | tangerine-wallet-browser-d5411e772d1efd8d723eb81403fa22b03b904f49.tar.gz tangerine-wallet-browser-d5411e772d1efd8d723eb81403fa22b03b904f49.tar.zst tangerine-wallet-browser-d5411e772d1efd8d723eb81403fa22b03b904f49.zip |
Make gas customization modal responsive.
Diffstat (limited to 'ui/app/css')
-rw-r--r-- | ui/app/css/itcss/components/newui-sections.scss | 1 | ||||
-rw-r--r-- | ui/app/css/itcss/components/send.scss | 1 | ||||
-rw-r--r-- | ui/app/css/itcss/generic/index.scss | 4 |
3 files changed, 6 insertions, 0 deletions
diff --git a/ui/app/css/itcss/components/newui-sections.scss b/ui/app/css/itcss/components/newui-sections.scss index 233e781ef..b4b77ba1e 100644 --- a/ui/app/css/itcss/components/newui-sections.scss +++ b/ui/app/css/itcss/components/newui-sections.scss @@ -216,6 +216,7 @@ $wallet-view-bg: $alabaster; .main-container-wrapper { height: 100%; + width: 100%; } } diff --git a/ui/app/css/itcss/components/send.scss b/ui/app/css/itcss/components/send.scss index 4535ced52..ba7db7aa8 100644 --- a/ui/app/css/itcss/components/send.scss +++ b/ui/app/css/itcss/components/send.scss @@ -530,6 +530,7 @@ @media screen and (max-width: $break-small) { margin: 0; flex: 1 1 auto; + width: 100%; } } diff --git a/ui/app/css/itcss/generic/index.scss b/ui/app/css/itcss/generic/index.scss index d1c65afed..d8e62c97a 100644 --- a/ui/app/css/itcss/generic/index.scss +++ b/ui/app/css/itcss/generic/index.scss @@ -18,6 +18,10 @@ body { height: 100%; margin: 0; padding: 0; + + @media screen and (max-width: $break-small) { + overflow-y: overlay; + } } html { |