mirror of
https://github.com/status-im/status-mobile.git
synced 2025-02-24 06:18:13 +00:00
17 lines
449 B
Clojure
17 lines
449 B
Clojure
(ns status-im.chat.constants)
|
|
|
|
(def input-height 56)
|
|
(def max-input-height 66)
|
|
(def min-input-height 22)
|
|
(def input-spacing-top 16)
|
|
(def input-spacing-bottom 18)
|
|
|
|
(def request-info-height 61)
|
|
(def response-height-normal 211)
|
|
(def minimum-suggestion-height (+ input-height request-info-height))
|
|
(def suggestions-header-height 22)
|
|
(def minimum-command-suggestions-height
|
|
(+ input-height suggestions-header-height))
|
|
|
|
(def emoji-container-height 250)
|