Fix message delivery status alignment on desktop
This commit is contained in:
parent
400e8b6d99
commit
3e43d85215
|
@ -3,6 +3,7 @@
|
||||||
(:require [status-im.ui.components.styles :as styles]
|
(:require [status-im.ui.components.styles :as styles]
|
||||||
[status-im.chat.styles.photos :as photos]
|
[status-im.chat.styles.photos :as photos]
|
||||||
[status-im.ui.components.colors :as colors]
|
[status-im.ui.components.colors :as colors]
|
||||||
|
[status-im.utils.platform :as platform]
|
||||||
[status-im.constants :as constants]))
|
[status-im.constants :as constants]))
|
||||||
|
|
||||||
(defstyle style-message-text
|
(defstyle style-message-text
|
||||||
|
@ -95,9 +96,9 @@
|
||||||
(defn delivery-status [outgoing]
|
(defn delivery-status [outgoing]
|
||||||
(if outgoing
|
(if outgoing
|
||||||
{:align-self :flex-end
|
{:align-self :flex-end
|
||||||
:padding-right 8}
|
:padding-right (if platform/desktop? 24 8)}
|
||||||
{:align-self :flex-start
|
{:align-self :flex-start
|
||||||
:padding-left 8}))
|
:padding-left (if platform/desktop? 24 8)}))
|
||||||
|
|
||||||
(def message-author
|
(def message-author
|
||||||
{:width photos/default-size
|
{:width photos/default-size
|
||||||
|
|
Loading…
Reference in New Issue