mirror of
https://github.com/status-im/status-mobile.git
synced 2025-03-03 09:40:59 +00:00
104 lines
1.6 KiB
Clojure
104 lines
1.6 KiB
Clojure
(ns status-im.transactions.styles)
|
|
|
|
(def transactions-screen
|
|
{:flex 1
|
|
:backgroundColor "#828b92"})
|
|
|
|
(def transactions-toolbar
|
|
{:backgroundColor "#828b92"
|
|
:elevation 0})
|
|
|
|
(def toolbar-title-text
|
|
{:color :white
|
|
:fontSize 16})
|
|
|
|
(def carousel-page-style
|
|
{})
|
|
|
|
(def form-container
|
|
{:flex 1
|
|
:paddingLeft 16})
|
|
|
|
(def password-style
|
|
{:color :white})
|
|
|
|
;transaction-page
|
|
|
|
(def transaction-page
|
|
{:flex 1
|
|
:backgroundColor "#f3f4f4"})
|
|
|
|
(def title-bar
|
|
{:backgroundColor :white
|
|
:height 39
|
|
:justifyContent :center})
|
|
|
|
(def title-bar-text
|
|
{:color "#838c93"
|
|
:fontSize 13
|
|
:marginLeft 12})
|
|
|
|
(def icon-close-container
|
|
{:position :absolute
|
|
:right 12
|
|
:top 13})
|
|
|
|
(def icon-close
|
|
{:width 12
|
|
:height 12})
|
|
|
|
(def transaction-info-container
|
|
{:flex 1
|
|
:paddingTop 6})
|
|
|
|
(def scroll-view-container
|
|
{:flex 1})
|
|
|
|
(def scroll-view
|
|
{:flex 1
|
|
:height 175})
|
|
|
|
(def scroll-view-content
|
|
{:paddingVertical 6})
|
|
|
|
(def transaction-info-row
|
|
{:flex 1
|
|
:flexDirection :row
|
|
:height 20
|
|
})
|
|
|
|
(def transaction-info-column-title
|
|
{:flex 0.4
|
|
:flexDirection :column
|
|
:paddingHorizontal 6})
|
|
|
|
(def transaction-info-column-value
|
|
{:flex 0.6
|
|
:flexDirection :column
|
|
:paddingHorizontal 6})
|
|
|
|
(def transaction-info-item
|
|
{:flex 1
|
|
:padding 6})
|
|
|
|
(def transaction-info-title
|
|
{:textAlign :right
|
|
:color "#838c93de"
|
|
:fontSize 14
|
|
:lineHeight 20})
|
|
|
|
(def transaction-info-value
|
|
{:color "#000000de"
|
|
:fontSize 14
|
|
:lineHeight 20
|
|
})
|
|
|
|
(def scroll-view-item
|
|
{:flex 1
|
|
:height 20
|
|
:padding 6 })
|
|
|
|
(def carousel-container
|
|
{:min-height 215
|
|
:flex 1})
|