aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/modals/modal.js
diff options
context:
space:
mode:
authorChi Kei Chan <chikeichan@gmail.com>2017-09-11 15:45:06 +0800
committerChi Kei Chan <chikeichan@gmail.com>2017-09-11 15:45:06 +0800
commit663cb758b345d7138b9e9c68489e1859dbfaa78e (patch)
tree6f9e942b457f8c5ba6291c967de6c490a5b47d03 /ui/app/components/modals/modal.js
parent395e8bfce05d385eed233b82d6fc5771253c6509 (diff)
downloadtangerine-wallet-browser-663cb758b345d7138b9e9c68489e1859dbfaa78e.tar.gz
tangerine-wallet-browser-663cb758b345d7138b9e9c68489e1859dbfaa78e.tar.zst
tangerine-wallet-browser-663cb758b345d7138b9e9c68489e1859dbfaa78e.zip
Style send token screen
Diffstat (limited to 'ui/app/components/modals/modal.js')
-rw-r--r--ui/app/components/modals/modal.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/ui/app/components/modals/modal.js b/ui/app/components/modals/modal.js
index 85bed66e1..477dcbe86 100644
--- a/ui/app/components/modals/modal.js
+++ b/ui/app/components/modals/modal.js
@@ -62,6 +62,9 @@ const MODALS = {
boxShadow: 'rgba(0, 0, 0, 0.15) 0px 2px 2px 2px',
borderRadius: '4px',
},
+ contentStyle: {
+ borderRadius: '4px',
+ }
},
NEW_ACCOUNT: {
@@ -117,6 +120,7 @@ Modal.prototype.render = function () {
const children = modal.contents
const modalStyle = modal[isMobileView() ? 'mobileModalStyle' : 'laptopModalStyle']
+ const contentStyle = modal.contentStyle || {};
return h(FadeModal,
{
@@ -127,6 +131,7 @@ Modal.prototype.render = function () {
this.modalRef = ref
},
modalStyle,
+ contentStyle,
backdropStyle: BACKDROPSTYLE,
},
children,