diff --git a/app/lib/components/Peers.jsx b/app/lib/components/Peers.jsx index f0ea8d3..6a40fe8 100644 --- a/app/lib/components/Peers.jsx +++ b/app/lib/components/Peers.jsx @@ -114,14 +114,17 @@ class Peers extends React.Component
- +
+ +
:null @@ -146,6 +149,7 @@ Peers.propTypes = peers : PropTypes.arrayOf(appPropTypes.Peer).isRequired, boxes : PropTypes.number, activeSpeakerName : PropTypes.string, + selectedPeerName : PropTypes.string, spotlightsLength : PropTypes.number, spotlights : PropTypes.array.isRequired }; @@ -162,6 +166,7 @@ const mapStateToProps = (state) => peers, boxes, activeSpeakerName : state.room.activeSpeakerName, + selectedPeerName : state.room.selectedPeerName, spotlights, spotlightsLength }; diff --git a/app/stylus/components/Peers.styl b/app/stylus/components/Peers.styl index 0cd52e5..f9283f0 100644 --- a/app/stylus/components/Peers.styl +++ b/app/stylus/components/Peers.styl @@ -39,6 +39,12 @@ &.active-speaker { border-color: #fff; } + + &.selected { + > .peer-content { + border: 1px solid #377eff; + } + } } +mobile() {