diff options
author | Alexander Tseung <alextsg@gmail.com> | 2018-08-26 09:00:38 +0800 |
---|---|---|
committer | Alexander Tseung <alextsg@gmail.com> | 2018-09-13 10:48:51 +0800 |
commit | 930dac110aa9127380673e119b0eaab9d45b1198 (patch) | |
tree | 365611642dd30a89bf3f9982fd8827e420c913dd /ui/app/components/transaction-activity-log/index.scss | |
parent | ce1975fbb4f36c83e64948968612b0c74a0b39b8 (diff) | |
download | tangerine-wallet-browser-930dac110aa9127380673e119b0eaab9d45b1198.tar tangerine-wallet-browser-930dac110aa9127380673e119b0eaab9d45b1198.tar.gz tangerine-wallet-browser-930dac110aa9127380673e119b0eaab9d45b1198.tar.bz2 tangerine-wallet-browser-930dac110aa9127380673e119b0eaab9d45b1198.tar.lz tangerine-wallet-browser-930dac110aa9127380673e119b0eaab9d45b1198.tar.xz tangerine-wallet-browser-930dac110aa9127380673e119b0eaab9d45b1198.tar.zst tangerine-wallet-browser-930dac110aa9127380673e119b0eaab9d45b1198.zip |
Add ActivityLog component
Diffstat (limited to 'ui/app/components/transaction-activity-log/index.scss')
-rw-r--r-- | ui/app/components/transaction-activity-log/index.scss | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/ui/app/components/transaction-activity-log/index.scss b/ui/app/components/transaction-activity-log/index.scss new file mode 100644 index 000000000..fb24b77e2 --- /dev/null +++ b/ui/app/components/transaction-activity-log/index.scss @@ -0,0 +1,53 @@ +.transaction-activity-log { + &__card { + background: $white; + } + + &__activities-container { + padding-top: 8px; + } + + &__activity { + padding: 4px 0; + display: flex; + flex-direction: row; + align-items: center; + position: relative; + + &::after { + content: ''; + position: absolute; + left: 0; + top: 0; + height: 100%; + width: 6px; + border-right: 1px solid $scorpion; + } + + &:first-child::after { + height: 50%; + top: 50%; + } + + &:last-child::after { + height: 50%; + } + } + + &__activity-icon { + width: 13px; + height: 13px; + margin-right: 6px; + border-radius: 50%; + background: $scorpion; + } + + &__activity-text { + color: $scorpion; + font-size: .75rem; + } + + b { + font-weight: 500; + } +} |