From 2ccc8fef0d13d52129fae058eb23d85858e0328f Mon Sep 17 00:00:00 2001 From: yenda Date: Tue, 13 Nov 2018 13:48:28 +0100 Subject: [PATCH] [fix] align min input container height with tab menu Signed-off-by: yenda --- src/status_im/ui/screens/desktop/main/chat/styles.cljs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/status_im/ui/screens/desktop/main/chat/styles.cljs b/src/status_im/ui/screens/desktop/main/chat/styles.cljs index 0ce4648023..e5ee693149 100644 --- a/src/status_im/ui/screens/desktop/main/chat/styles.cljs +++ b/src/status_im/ui/screens/desktop/main/chat/styles.cljs @@ -1,7 +1,10 @@ (ns status-im.ui.screens.desktop.main.chat.styles (:require [status-im.ui.components.colors :as colors])) -(def min-input-container-height 68) +;; TODO: see how this could be refactored to be +;; automatically alignde with tabs-height in +;; status-im.ui.screens.main-tabs.styles +(def min-input-container-height 67) (def max-input-container-height 180) (def chat-vertical-padding 16) (def min-input-area-height 20)