mirror of
https://github.com/status-im/status-react.git
synced 2025-01-10 19:16:59 +00:00
Transaction summary design followup fixes (#17360)
This commit is contained in:
parent
db787f9d4b
commit
79f7b6c6ba
Binary file not shown.
Before Width: | Height: | Size: 725 B After Width: | Height: | Size: 673 B |
Binary file not shown.
Before Width: | Height: | Size: 1007 B After Width: | Height: | Size: 1001 B |
@ -50,7 +50,8 @@
|
|||||||
(defn divider
|
(defn divider
|
||||||
[theme]
|
[theme]
|
||||||
{:height 1
|
{:height 1
|
||||||
:margin-vertical 4
|
:margin-top 4
|
||||||
|
:margin-bottom 3
|
||||||
:background-color (colors/theme-colors colors/neutral-10 colors/neutral-80 theme)})
|
:background-color (colors/theme-colors colors/neutral-10 colors/neutral-80 theme)})
|
||||||
|
|
||||||
(defn extra-info-header
|
(defn extra-info-header
|
||||||
|
@ -12,6 +12,13 @@
|
|||||||
:amount 1500
|
:amount 1500
|
||||||
:token-logo (quo.resources/get-token :snt)})
|
:token-logo (quo.resources/get-token :snt)})
|
||||||
|
|
||||||
|
(def asset-eth
|
||||||
|
{:size 24
|
||||||
|
:type :token
|
||||||
|
:token-name "ETH"
|
||||||
|
:amount 75
|
||||||
|
:token-logo (quo.resources/get-token :eth)})
|
||||||
|
|
||||||
(def asset-dai
|
(def asset-dai
|
||||||
{:size 24
|
{:size 24
|
||||||
:type :token
|
:type :token
|
||||||
@ -38,6 +45,13 @@
|
|||||||
:account-name "Piggy bank"
|
:account-name "Piggy bank"
|
||||||
:emoji "🐷"})
|
:emoji "🐷"})
|
||||||
|
|
||||||
|
(def collectibles-vault
|
||||||
|
{:size 24
|
||||||
|
:type :account
|
||||||
|
:account-name "Collectibles vault"
|
||||||
|
:customization-color :orange
|
||||||
|
:emoji "🎮"})
|
||||||
|
|
||||||
(def aretha-gosling
|
(def aretha-gosling
|
||||||
{:size 24
|
{:size 24
|
||||||
:type :default
|
:type :default
|
||||||
@ -50,6 +64,12 @@
|
|||||||
:full-name "James Bond"
|
:full-name "James Bond"
|
||||||
:profile-picture (resources/mock-images :user-picture-male4)})
|
:profile-picture (resources/mock-images :user-picture-male4)})
|
||||||
|
|
||||||
|
(def mark-libot
|
||||||
|
{:size 24
|
||||||
|
:type :default
|
||||||
|
:full-name "Mark Libot"
|
||||||
|
:profile-picture (resources/mock-images :user-picture-male4)})
|
||||||
|
|
||||||
(def mainnet
|
(def mainnet
|
||||||
{:size 24
|
{:size 24
|
||||||
:type :network
|
:type :network
|
||||||
@ -90,6 +110,8 @@
|
|||||||
(def context-tags
|
(def context-tags
|
||||||
[{:key asset-snt
|
[{:key asset-snt
|
||||||
:value "SNT"}
|
:value "SNT"}
|
||||||
|
{:key asset-eth
|
||||||
|
:value "ETH"}
|
||||||
{:key asset-dai
|
{:key asset-dai
|
||||||
:value "UNK"}
|
:value "UNK"}
|
||||||
{:key asset-collectible
|
{:key asset-collectible
|
||||||
@ -98,8 +120,12 @@
|
|||||||
:value "Account: Trip to Vegas"}
|
:value "Account: Trip to Vegas"}
|
||||||
{:key piggy-bank
|
{:key piggy-bank
|
||||||
:value "Account: Piggy bank"}
|
:value "Account: Piggy bank"}
|
||||||
|
{:key collectibles-vault
|
||||||
|
:value "Account: Collectibles vault"}
|
||||||
{:key aretha-gosling
|
{:key aretha-gosling
|
||||||
:value "Person: Aretha Gosling"}
|
:value "Person: Aretha Gosling"}
|
||||||
|
{:key mark-libot
|
||||||
|
:value "Person: Mark Libot"}
|
||||||
{:key james-bond
|
{:key james-bond
|
||||||
:value "Person: James Bond"}
|
:value "Person: James Bond"}
|
||||||
{:key mainnet
|
{:key mainnet
|
||||||
|
Loading…
x
Reference in New Issue
Block a user