Skip to content

Commit

Permalink
Fix 'Start new chat' button when you have no chats (keybase#19622)
Browse files Browse the repository at this point in the history
* Fix 'Start new chat' button when you have no chats

* platformStyles

* tsc
  • Loading branch information
cjb authored Sep 13, 2019
1 parent 8f3ce2d commit b8d8c1e
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions shared/chat/inbox/row/start-new-chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,14 @@ const styles = Styles.styleSheetCreate(
position: 'absolute',
top: Styles.globalMargins.xxtiny,
},
button: {
flexGrow: 1,
marginLeft: Styles.globalMargins.small,
marginRight: Styles.globalMargins.small,
},
button: Styles.platformStyles({
common: {
flexGrow: 1,
marginLeft: Styles.globalMargins.small,
marginRight: Styles.globalMargins.small,
},
isElectron: Styles.desktopStyles.windowDraggingClickable,
}),
buttonIcon: {
marginRight: Styles.globalMargins.tiny,
},
Expand Down

0 comments on commit b8d8c1e

Please sign in to comment.