mirror of
https://github.com/status-im/status-mobile.git
synced 2025-02-06 05:45:03 +00:00
b5763bb8ad
Former-commit-id: 6a5250247ca0de762169548c2ff109486b709f13
25 lines
444 B
Clojure
25 lines
444 B
Clojure
(ns status-im.participants.styles)
|
|
|
|
(def participants-container
|
|
{:flex 1
|
|
:backgroundColor :white})
|
|
|
|
(def participants-list
|
|
{:backgroundColor :white})
|
|
|
|
(def new-participant-image
|
|
{:width 20
|
|
:height 18})
|
|
|
|
(def remove-participants-image
|
|
{:width 22
|
|
:height 30})
|
|
|
|
(def participant-container
|
|
{:flexDirection :row
|
|
:marginTop 5
|
|
:marginBottom 5
|
|
:paddingLeft 15
|
|
:paddingRight 15
|
|
:height 75})
|