aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/selected-account/index.scss
diff options
context:
space:
mode:
authorThomas Huang <tmashuang@users.noreply.github.com>2018-06-05 07:37:58 +0800
committerGitHub <noreply@github.com>2018-06-05 07:37:58 +0800
commite1cd3562cef92a78945056dc557d4228a72b119c (patch)
tree0d4a7cbe1c095085744ed27f59453667d5b41c88 /ui/app/components/selected-account/index.scss
parent750ec8769931f8db30ebb5e8e8bcc61816368800 (diff)
parentc12b02b4af75d6d706d0b8cd9aeb07f18aa3037a (diff)
downloadtangerine-wallet-browser-e1cd3562cef92a78945056dc557d4228a72b119c.tar.gz
tangerine-wallet-browser-e1cd3562cef92a78945056dc557d4228a72b119c.tar.zst
tangerine-wallet-browser-e1cd3562cef92a78945056dc557d4228a72b119c.zip
Merge pull request #4490 from MetaMask/v4.7.3
Version 4.7.3
Diffstat (limited to 'ui/app/components/selected-account/index.scss')
-rw-r--r--ui/app/components/selected-account/index.scss38
1 files changed, 38 insertions, 0 deletions
diff --git a/ui/app/components/selected-account/index.scss b/ui/app/components/selected-account/index.scss
new file mode 100644
index 000000000..5339a228b
--- /dev/null
+++ b/ui/app/components/selected-account/index.scss
@@ -0,0 +1,38 @@
+.selected-account {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ flex: 1;
+
+ &__name {
+ max-width: 200px;
+ text-overflow: ellipsis;
+ overflow: hidden;
+ white-space: nowrap;
+ text-align: center;
+ }
+
+ &__address {
+ font-size: .75rem;
+ color: $silver-chalice;
+ }
+
+ &__clickable {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ padding: 5px 15px;
+ border-radius: 10px;
+ cursor: pointer;
+
+ &:hover {
+ background-color: #e8e6e8;
+ }
+
+ &:active {
+ background-color: #d9d7da;
+ }
+ }
+}