From 20292a5fd492b68fc85fc9a17b8a6871fab8f42b Mon Sep 17 00:00:00 2001 From: nsarafa Date: Thu, 4 May 2017 21:18:48 -0400 Subject: [PATCH 1/2] installation instructions init --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index c574253..64c6ed5 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,10 @@
Brought to you by the Missive team +## Installation + +`npm install --save emoji-mart` + ## Components ### Picker ```jsx From 661e94819373c92ff3d7a3e1242b2593db4a203d Mon Sep 17 00:00:00 2001 From: nsarafa Date: Thu, 4 May 2017 21:21:01 -0400 Subject: [PATCH 2/2] set word-break to appropriate value --- css/emoji-mart.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/css/emoji-mart.css b/css/emoji-mart.css index dd4960d..121fb28 100644 --- a/css/emoji-mart.css +++ b/css/emoji-mart.css @@ -163,7 +163,7 @@ .emoji-mart-preview-data { left: 68px; right: 12px; - word-break: break-word; + word-break: break-all; } .emoji-mart-preview-skins { @@ -231,7 +231,7 @@ transition-timing-function: ease-out; } -.emoji-mart-skin-swatch:nth-child(1) { transition-delay: 0 } +.emoji-mart-skin-swatch:nth-child(1) { transition-delay: 0s } .emoji-mart-skin-swatch:nth-child(2) { transition-delay: .03s } .emoji-mart-skin-swatch:nth-child(3) { transition-delay: .06s } .emoji-mart-skin-swatch:nth-child(4) { transition-delay: .09s }