This commit is contained in:
Ulises M 2024-11-19 15:59:31 -06:00
parent 3ef3de81ce
commit dc532cd9c4
No known key found for this signature in database
GPG Key ID: 5A15782EB758534E
2 changed files with 13 additions and 13 deletions

View File

@ -7,11 +7,11 @@
(defn- add-shadow (defn- add-shadow
[theme styles] [theme styles]
(cond-> styles (cond-> styles
platform/ios? (assoc :shadow-radius (colors/theme-colors 30 50 theme) platform/ios? (assoc :shadow-radius (colors/theme-colors 30 50 theme)
:shadow-opacity (colors/theme-colors 0.1 0.7 theme) :shadow-opacity (colors/theme-colors 0.1 0.7 theme)
:shadow-color colors/neutral-100 :shadow-color colors/neutral-100
:shadow-offset {:width 0 :height (colors/theme-colors 8 12 theme)}) :shadow-offset {:width 0 :height (colors/theme-colors 8 12 theme)})
:else (assoc :elevation 10))) :else (assoc :elevation 10)))
(defn inner (defn inner
[top theme] [top theme]

View File

@ -1,14 +1,14 @@
(ns status-im.contexts.chat.messenger.composer.mentions.view (ns status-im.contexts.chat.messenger.composer.mentions.view
(:require (:require
[quo.theme] [quo.theme]
[react-native.core :as rn] [react-native.core :as rn]
[react-native.reanimated :as reanimated] [react-native.reanimated :as reanimated]
[react-native.safe-area :as safe-area] [react-native.safe-area :as safe-area]
[status-im.common.contact-list-item.view :as contact-list-item] [status-im.common.contact-list-item.view :as contact-list-item]
[status-im.contexts.chat.messenger.composer.constants :as constants] [status-im.contexts.chat.messenger.composer.constants :as constants]
[status-im.contexts.chat.messenger.composer.mentions.style :as style] [status-im.contexts.chat.messenger.composer.mentions.style :as style]
[status-im.contexts.chat.messenger.messages.constants :as messages.constants] [status-im.contexts.chat.messenger.messages.constants :as messages.constants]
[utils.re-frame :as rf])) [utils.re-frame :as rf]))
(defn mention-item (defn mention-item
[user] [user]