diff --git a/src/syng_im/chat/styles/input.cljs b/src/syng_im/chat/styles/input.cljs index 3bebde177f..dcbc893f86 100644 --- a/src/syng_im/chat/styles/input.cljs +++ b/src/syng_im/chat/styles/input.cljs @@ -6,13 +6,6 @@ text2-color chat-background color-black]])) -(def money-input - {:flex 1 - :marginLeft 8 - :lineHeight 42 - :fontSize 32 - :fontFamily font - :color :black}) (def command-input-and-suggestions-container {:flexDirection :column}) diff --git a/src/syng_im/chat/views/money.cljs b/src/syng_im/chat/views/money.cljs index 7166476cf0..4706009bfd 100644 --- a/src/syng_im/chat/views/money.cljs +++ b/src/syng_im/chat/views/money.cljs @@ -1,9 +1,7 @@ (ns syng-im.chat.views.money (:require - [syng-im.chat.views.command :refer [simple-command-input-view]] - [syng-im.chat.styles.input :as st])) + [syng-im.chat.views.command :refer [simple-command-input-view]])) (defn money-input-view [command] [simple-command-input-view command - {:keyboardType :numeric - :style st/money-input}]) + {:keyboardType :numeric}])