aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/transaction-breakdown/index.scss
diff options
context:
space:
mode:
authorAlexander Tseung <alextsg@gmail.com>2018-09-01 03:36:07 +0800
committerAlexander Tseung <alextsg@gmail.com>2018-09-13 10:48:52 +0800
commitfd51ab12298e93286eeaf03c60e0b4e8d5d1bad3 (patch)
tree69e43bf265b933a158a9ab6e5251df2109f31ea7 /ui/app/components/transaction-breakdown/index.scss
parent084158f1a2af9d117c054420e895f4ae76a94df0 (diff)
downloadtangerine-wallet-browser-fd51ab12298e93286eeaf03c60e0b4e8d5d1bad3.tar.gz
tangerine-wallet-browser-fd51ab12298e93286eeaf03c60e0b4e8d5d1bad3.tar.zst
tangerine-wallet-browser-fd51ab12298e93286eeaf03c60e0b4e8d5d1bad3.zip
Add TransactionBreakdown component
Diffstat (limited to 'ui/app/components/transaction-breakdown/index.scss')
-rw-r--r--ui/app/components/transaction-breakdown/index.scss23
1 files changed, 23 insertions, 0 deletions
diff --git a/ui/app/components/transaction-breakdown/index.scss b/ui/app/components/transaction-breakdown/index.scss
new file mode 100644
index 000000000..1bb108943
--- /dev/null
+++ b/ui/app/components/transaction-breakdown/index.scss
@@ -0,0 +1,23 @@
+@import './transaction-breakdown-row/index';
+
+.transaction-breakdown {
+ &__card {
+ background: $white;
+ height: 100%;
+ }
+
+ &__row-title {
+ text-transform: capitalize;
+ }
+
+ &__value {
+ text-align: end;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+
+ &--eth-total {
+ font-weight: 500;
+ }
+ }
+}