diff options
author | Alexander Tseung <alextsg@users.noreply.github.com> | 2017-10-14 04:23:10 +0800 |
---|---|---|
committer | Daniel Tsui <szehungdanieltsui@gmail.com> | 2017-10-14 04:23:10 +0800 |
commit | 222a203353dd977f497d44bf6581c16200b5de4f (patch) | |
tree | 6a9c394db6c4e2ac3283b3e712ae411575f776fd /ui/app/css | |
parent | 803eaaf968161f16aaf72d59b979dfbb7fb9b352 (diff) | |
download | tangerine-wallet-browser-222a203353dd977f497d44bf6581c16200b5de4f.tar tangerine-wallet-browser-222a203353dd977f497d44bf6581c16200b5de4f.tar.gz tangerine-wallet-browser-222a203353dd977f497d44bf6581c16200b5de4f.tar.bz2 tangerine-wallet-browser-222a203353dd977f497d44bf6581c16200b5de4f.tar.lz tangerine-wallet-browser-222a203353dd977f497d44bf6581c16200b5de4f.tar.xz tangerine-wallet-browser-222a203353dd977f497d44bf6581c16200b5de4f.tar.zst tangerine-wallet-browser-222a203353dd977f497d44bf6581c16200b5de4f.zip |
Fix click to copy for private key not working (#2360)
Diffstat (limited to 'ui/app/css')
-rw-r--r-- | ui/app/css/itcss/components/modal.scss | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/app/css/itcss/components/modal.scss b/ui/app/css/itcss/components/modal.scss index 556f14389..1ffea58a9 100644 --- a/ui/app/css/itcss/components/modal.scss +++ b/ui/app/css/itcss/components/modal.scss @@ -356,18 +356,18 @@ .private-key-password-display-wrapper { height: 80px; width: 291px; - border: 1px solid $silver; + border: 1px solid $silver; border-radius: 2px; } .private-key-password-display-textarea { color: $crimson; - font-family: Roboto; - font-size: 16px; + font-family: Roboto; + font-size: 16px; line-height: 21px; border: none; height: 75px; - width: 253px; + width: 100%; overflow: hidden; resize: none; padding: 9px 13px 8px; |