Increase contrast of typing indicator in iOS theme

This commit is contained in:
Scott Nonnenberg 2019-01-14 17:29:36 -08:00
parent 92c2a0f996
commit cba47668cd
2 changed files with 10 additions and 2 deletions

View file

@ -124,6 +124,14 @@
color: $color-light-60;
}
.module-typing-animation__dot {
background-color: $color-gray-60;
}
.module-typing-animation__dot--light {
background-color: $color-gray-60;
}
&.dark-theme {
// _modules

View file

@ -1,7 +1,7 @@
### In message bubble
```jsx
<util.ConversationContext theme={util.theme}>
<util.ConversationContext theme={util.theme} ios={util.ios}>
<li>
<TypingBubble conversationType="direct" i18n={util.i18n} />
</li>
@ -14,7 +14,7 @@
### In message bubble, group conversation
```jsx
<util.ConversationContext theme={util.theme}>
<util.ConversationContext theme={util.theme} ios={util.ios}>
<li>
<TypingBubble color="red" conversationType="group" i18n={util.i18n} />
</li>