From c152a17a85820edf6453349198849ef977441c85 Mon Sep 17 00:00:00 2001 From: sooyoung Date: Wed, 16 Jun 2021 01:00:47 +0900 Subject: [PATCH] Changed scss style to see token symbol (#11294) * Changed scss style to see token symbol * fix indentations --- .../app/asset-list-item/asset-list-item.scss | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/ui/components/app/asset-list-item/asset-list-item.scss b/ui/components/app/asset-list-item/asset-list-item.scss index 6ee0853a5..f46fe7928 100644 --- a/ui/components/app/asset-list-item/asset-list-item.scss +++ b/ui/components/app/asset-list-item/asset-list-item.scss @@ -10,10 +10,7 @@ text-align: start; & h2 { - overflow: hidden; - white-space: nowrap; - text-overflow: ellipsis; - max-width: 100%; + display: flex; } & span { @@ -21,6 +18,16 @@ } } + &__token-value { + flex: 1; + padding-right: 5px; + white-space: nowrap; + text-overflow: ellipsis; + max-width: 100%; + display: block; + overflow: hidden; + } + &__chevron-right { color: $Grey-500; }