Fix summary-tag style (#18474)

This commit is contained in:
Ulises Manuel 2024-01-15 20:42:05 -06:00 committed by GitHub
parent 8d3883c709
commit 0fd7a4b581
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 5 deletions

View File

@ -21,7 +21,12 @@
(def collectible-image
{:width 24
:height 24
:border-radius 10})
:border-radius 8})
(def network
{:width 24
:height 24
:border-radius 12})
(def token-image
{:border-radius 12})

View File

@ -22,7 +22,7 @@
:network
[rn/image
{:source image-source
:style style/token-image}]
:style style/network}]
:saved-address
[wallet-user-avatar/wallet-user-avatar
{:full-name label

View File

@ -55,9 +55,7 @@
(defn view
[]
(let [state (reagent/atom
(merge {:type :token}
(data :token)))]
(let [state (reagent/atom (assoc (data :token) :type :token))]
(fn []
[preview/preview-container
{:state state